├── Chapter01 ├── ReadMe.txt ├── tsconfig.json └── wwwroot │ └── ts │ ├── tests.js │ ├── tests.js.map │ └── tests.ts ├── Chapter02 ├── ReadMe.txt ├── tsconfig.json └── wwwroot │ └── ts │ ├── ArraysAndTuples.ts │ ├── DestructuringAndSpread.ts │ ├── Interfaces.ts │ ├── TypeScriptFunctions.ts │ ├── TypesOperations.ts │ ├── tests.js │ └── tests.js.map ├── Chapter03 ├── ReadMe.txt ├── Views │ └── Home │ │ └── Index.cshtml ├── package.json ├── tsconfig.json └── wwwroot │ └── ts │ ├── DOMTests.ts │ ├── jQueryToDo.ts │ └── plainToDo.ts ├── Chapter04 ├── ReadMe.txt ├── Views │ └── Home │ │ └── Index.cshtml ├── package.json ├── tsconfig.json └── wwwroot │ └── ts │ ├── ClassTest.ts │ ├── lib │ ├── AbstractLists.ts │ ├── jQueryList.ts │ └── plainList.ts │ └── modularToDoList.ts ├── Chapter05 ├── ReadMe.txt ├── Views │ └── Home │ │ ├── About.cshtml │ │ └── Index.cshtml ├── package.json ├── tsconfig.json └── wwwroot │ └── ts │ ├── genericConstraints.ts │ ├── invoices.ts │ ├── lib │ ├── AbstractLists.ts │ ├── aggregate.ts │ ├── jQueryList.ts │ └── plainList.ts │ └── modularToDoList.ts ├── Chapter06 ├── Dynamic │ ├── ReadMe.txt │ ├── Views │ │ └── Home │ │ │ └── Index.cshtml │ ├── package.json │ ├── tsconfig.json │ └── wwwroot │ │ └── ts │ │ ├── lib │ │ ├── AbstractLists.ts │ │ ├── jQueryList.ts │ │ └── plainList.ts │ │ └── modularToDoList.ts ├── Modules │ ├── ReadMe.txt │ ├── Views │ │ └── Home │ │ │ └── Index.cshtml │ ├── package.json │ ├── tsconfig.json │ └── wwwroot │ │ └── ts │ │ ├── Anagraphic1.ts │ │ ├── AnagraphicImporter.ts │ │ ├── AnagraphicImporter1.ts │ │ ├── AnagraphicImporter2.ts │ │ ├── AnagraphicImporter3.ts │ │ ├── lib │ │ ├── AbstractLists.ts │ │ ├── jQueryList.ts │ │ └── plainList.ts │ │ └── modularToDoList.ts └── Namespaces │ ├── ReadMe.txt │ ├── Views │ └── Home │ │ └── Index.cshtml │ ├── package.json │ ├── tsconfig.json │ └── wwwroot │ └── ts │ ├── Anagraphic.ts │ ├── lib │ ├── AbstractLists.ts │ ├── jQueryList.ts │ └── plainList.ts │ └── modularToDoList.ts ├── Chapter07 ├── VS Middleware │ ├── ReadMe.txt │ ├── Startup.cs │ ├── Views │ │ └── Home │ │ │ └── Index.cshtml │ ├── appsettings.json │ ├── package.json │ ├── webpack.config.js │ └── wwwroot │ │ └── ts │ │ ├── lib │ │ ├── AbstractLists.ts │ │ ├── jQueryList.ts │ │ └── plainList.ts │ │ └── modularToDoList.ts ├── complete │ ├── ReadMe.txt │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ └── Index.cshtml │ │ └── Shared │ │ │ └── _Layout.cshtml │ ├── package.json │ ├── tsconfig.json │ ├── webpack.config.js │ ├── webpack.config.vendor.js │ └── wwwroot │ │ ├── dist │ │ ├── 448c34a56d699c29117adc64c43affeb.woff2 │ │ ├── 89889688147bd7575d6327160d64e760.svg │ │ ├── common~fake~main.chunk.js │ │ ├── common~fake~main.chunk.js.map │ │ ├── common~fake~plainList.chunk.js │ │ ├── common~fake~plainList.chunk.js.map │ │ ├── e18bbf611f2a2e43afc071aa2f4e1512.ttf │ │ ├── f4769f9bdb7466be65088239c12046d1.eot │ │ ├── fa2772327f55d8198301fdb8bcfc8158.woff │ │ ├── fake.bundle.js │ │ ├── fake.bundle.js.map │ │ ├── main.bundle.js │ │ ├── main.bundle.js.map │ │ ├── main.css │ │ ├── plainList.chunk.js │ │ ├── plainList.chunk.js.map │ │ ├── vendor-manifest.json │ │ ├── vendor.css │ │ ├── vendor.js │ │ ├── vendors~main.chunk.js │ │ └── vendors~main.chunk.js.map │ │ ├── html │ │ └── item_template.html │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ └── banner3.svg │ │ ├── js │ │ ├── Anagraphic.js │ │ ├── Anagraphic.js.map │ │ ├── Anagraphic1.js │ │ ├── Anagraphic1.js.map │ │ ├── AnagraphicImporter.js │ │ ├── AnagraphicImporter.js.map │ │ ├── AnagraphicImporter1.js │ │ ├── AnagraphicImporter1.js.map │ │ ├── AnagraphicImporter2.js │ │ ├── AnagraphicImporter2.js.map │ │ ├── AnagraphicImporter3.js │ │ ├── AnagraphicImporter3.js.map │ │ ├── ClassTest.js │ │ ├── ClassTest.js.map │ │ ├── DOMTests.js │ │ ├── DOMTests.js.map │ │ ├── fake.js │ │ ├── fake.js.map │ │ ├── genericConstraints.js │ │ ├── genericConstraints.js.map │ │ ├── invoices.js │ │ ├── invoices.js.map │ │ ├── jQueryToDo.js │ │ ├── jQueryToDo.js.map │ │ ├── lib │ │ │ ├── AbstractLists.js │ │ │ ├── AbstractLists.js.map │ │ │ ├── aggregate.js │ │ │ ├── aggregate.js.map │ │ │ ├── jQueryList.js │ │ │ ├── jQueryList.js.map │ │ │ ├── plainList.js │ │ │ └── plainList.js.map │ │ ├── modularToDoList.js │ │ ├── modularToDoList.js.map │ │ ├── plainToDo.js │ │ ├── plainToDo.js.map │ │ ├── site.js │ │ ├── site.js.map │ │ └── site.min.js │ │ └── ts │ │ ├── fake.ts │ │ ├── lib │ │ ├── AbstractLists.ts │ │ ├── jQueryList.ts │ │ └── plainList.ts │ │ └── modularToDoList.ts └── simple │ ├── ReadMe.txt │ ├── Views │ └── Home │ │ └── Index.cshtml │ ├── package.json │ ├── tsconfig.json │ ├── webpack.config.js │ └── wwwroot │ ├── dist │ ├── main.bundle.js │ └── main.bundle.js.map │ └── ts │ ├── lib │ ├── AbstractLists.ts │ ├── jQueryList.ts │ └── plainList.ts │ └── modularToDoList.ts ├── Chapter08 ├── ReadMe.txt └── domlist │ ├── .vscode │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── dist │ ├── AbstractLists.d.ts │ ├── AbstractLists.js │ ├── AbstractLists.js.map │ ├── index.d.ts │ ├── index.js │ ├── index.js.map │ ├── jQueryList.d.ts │ ├── jQueryList.js │ ├── jQueryList.js.map │ ├── plainList.d.ts │ ├── plainList.js │ └── plainList.js.map │ ├── package-lock.json │ ├── package.json │ ├── sources │ ├── AbstractLists.ts │ ├── index.ts │ ├── jQueryList.ts │ └── plainList.ts │ ├── spec │ ├── plainDomSpec.js │ ├── plainDomSpec.js.map │ └── support │ │ └── jasmine.json │ ├── specSources │ └── plainDomSpec.ts │ ├── test.ts │ ├── tsconfig.json │ └── tsconfig.tests.json ├── Chapter09 ├── Controllers │ └── HomeController.cs ├── ReadMe.txt ├── Views │ └── Home │ │ └── Index.cshtml ├── package.json ├── tsconfig.json └── wwwroot │ └── ts │ ├── ApiCall.ts │ ├── BuiltInIterables.ts │ ├── Decorators.ts │ ├── DecoratorsTests.ts │ ├── Iterables.ts │ └── SymbolExamples.ts ├── Chapter10 ├── ClientApp │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── e2e │ │ ├── app.e2e-spec.ts │ │ ├── app.po.ts │ │ └── tsconfig.e2e.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── protractor.conf.js │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── counter │ │ │ │ ├── counter.component.html │ │ │ │ ├── counter.component.spec.ts │ │ │ │ └── counter.component.ts │ │ │ ├── extra-features │ │ │ │ ├── extra-features.module.spec.ts │ │ │ │ ├── extra-features.module.ts │ │ │ │ └── test-component │ │ │ │ │ ├── test-component.component.css │ │ │ │ │ ├── test-component.component.html │ │ │ │ │ ├── test-component.component.spec.ts │ │ │ │ │ └── test-component.component.ts │ │ │ ├── fetch-data │ │ │ │ ├── fetch-data.component.html │ │ │ │ └── fetch-data.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── nav-menu │ │ │ │ ├── nav-menu.component.css │ │ │ │ ├── nav-menu.component.html │ │ │ │ └── nav-menu.component.ts │ │ │ └── smart-date │ │ │ │ ├── smart-date.component.css │ │ │ │ ├── smart-date.component.html │ │ │ │ ├── smart-date.component.spec.ts │ │ │ │ └── smart-date.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ └── tsconfig.spec.json │ ├── tsconfig.json │ └── tslint.json └── ReadMe.txt ├── Chapter11 ├── ClientApp │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.e2e.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── capitalize.pipe.spec.ts │ │ │ ├── capitalize.pipe.ts │ │ │ ├── font-size │ │ │ │ ├── font-size.component.css │ │ │ │ ├── font-size.component.html │ │ │ │ ├── font-size.component.spec.ts │ │ │ │ └── font-size.component.ts │ │ │ ├── form-test │ │ │ │ ├── form-test.component.css │ │ │ │ ├── form-test.component.html │ │ │ │ ├── form-test.component.spec.ts │ │ │ │ └── form-test.component.ts │ │ │ ├── modal-test │ │ │ │ ├── modal-test.component.html │ │ │ │ ├── modal-test.component.spec.ts │ │ │ │ └── modal-test.component.ts │ │ │ └── simple-order.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── browserslist │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── karma.conf.js │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ ├── tsconfig.json │ └── tslint.json └── ReadMe.txt ├── Chapter12 ├── Animations │ ├── ClientApp │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── README.md │ │ ├── angular.json │ │ ├── e2e │ │ │ ├── app.e2e-spec.ts │ │ │ ├── app.po.ts │ │ │ └── tsconfig.e2e.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── counter │ │ │ │ │ ├── counter.component.html │ │ │ │ │ ├── counter.component.spec.ts │ │ │ │ │ └── counter.component.ts │ │ │ │ ├── extra-features │ │ │ │ │ ├── extra-features.module.spec.ts │ │ │ │ │ ├── extra-features.module.ts │ │ │ │ │ └── test-component │ │ │ │ │ │ ├── test-component.component.css │ │ │ │ │ │ ├── test-component.component.html │ │ │ │ │ │ ├── test-component.component.spec.ts │ │ │ │ │ │ └── test-component.component.ts │ │ │ │ ├── fetch-data │ │ │ │ │ ├── fetch-data.component.html │ │ │ │ │ └── fetch-data.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── nav-menu │ │ │ │ │ ├── nav-menu.component.css │ │ │ │ │ ├── nav-menu.component.html │ │ │ │ │ └── nav-menu.component.ts │ │ │ │ └── smart-date │ │ │ │ │ ├── smart-date.component.css │ │ │ │ │ ├── smart-date.component.html │ │ │ │ │ ├── smart-date.component.spec.ts │ │ │ │ │ └── smart-date.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ ├── test.ts │ │ │ ├── tsconfig.app.json │ │ │ └── tsconfig.spec.json │ │ ├── tsconfig.json │ │ └── tslint.json │ └── ReadMe.txt └── Directives │ ├── ClientApp │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.e2e.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── capitalize.pipe.spec.ts │ │ │ ├── capitalize.pipe.ts │ │ │ ├── directives │ │ │ │ ├── input-error.directive.spec.ts │ │ │ │ ├── input-error.directive.ts │ │ │ │ ├── lens.directive.spec.ts │ │ │ │ ├── lens.directive.ts │ │ │ │ ├── max.directive.spec.ts │ │ │ │ ├── max.directive.ts │ │ │ │ ├── min.directive.spec.ts │ │ │ │ ├── min.directive.ts │ │ │ │ ├── step.directive.spec.ts │ │ │ │ └── step.directive.ts │ │ │ ├── font-size │ │ │ │ ├── font-size.component.css │ │ │ │ ├── font-size.component.html │ │ │ │ ├── font-size.component.spec.ts │ │ │ │ └── font-size.component.ts │ │ │ ├── form-test │ │ │ │ ├── form-test.component.css │ │ │ │ ├── form-test.component.html │ │ │ │ ├── form-test.component.spec.ts │ │ │ │ └── form-test.component.ts │ │ │ ├── modal-test │ │ │ │ ├── modal-test.component.html │ │ │ │ ├── modal-test.component.spec.ts │ │ │ │ └── modal-test.component.ts │ │ │ └── simple-order.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── browserslist │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── karma.conf.js │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ ├── tsconfig.json │ └── tslint.json │ └── ReadMe.txt ├── Chapter13 ├── DependencyInjection │ ├── ClientApp │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── README.md │ │ ├── angular.json │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.e2e.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app-tokens.js │ │ │ │ ├── app-tokens.js.map │ │ │ │ ├── app-tokens.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.spec.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── capitalize.pipe.spec.ts │ │ │ │ ├── capitalize.pipe.ts │ │ │ │ ├── directives │ │ │ │ │ ├── input-error.directive.spec.ts │ │ │ │ │ ├── input-error.directive.ts │ │ │ │ │ ├── lens.directive.spec.ts │ │ │ │ │ ├── lens.directive.ts │ │ │ │ │ ├── max.directive.spec.ts │ │ │ │ │ ├── max.directive.ts │ │ │ │ │ ├── min.directive.spec.ts │ │ │ │ │ ├── min.directive.ts │ │ │ │ │ ├── step.directive.spec.ts │ │ │ │ │ └── step.directive.ts │ │ │ │ ├── en-US │ │ │ │ │ ├── input-error-messages.js │ │ │ │ │ ├── input-error-messages.js.map │ │ │ │ │ └── input-error-messages.ts │ │ │ │ ├── font-size │ │ │ │ │ ├── font-size.component.css │ │ │ │ │ ├── font-size.component.html │ │ │ │ │ ├── font-size.component.spec.ts │ │ │ │ │ └── font-size.component.ts │ │ │ │ ├── form-test │ │ │ │ │ ├── form-test.component.css │ │ │ │ │ ├── form-test.component.html │ │ │ │ │ ├── form-test.component.spec.ts │ │ │ │ │ └── form-test.component.ts │ │ │ │ ├── modal-test │ │ │ │ │ ├── modal-test.component.html │ │ │ │ │ ├── modal-test.component.spec.ts │ │ │ │ │ └── modal-test.component.ts │ │ │ │ └── simple-order.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── browserslist │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── karma.conf.js │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ ├── test.ts │ │ │ ├── tsconfig.app.json │ │ │ ├── tsconfig.spec.json │ │ │ └── tslint.json │ │ ├── tsconfig.json │ │ └── tslint.json │ └── ReadMe.txt └── Final │ ├── ClientApp │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── e2e │ │ ├── app.e2e-spec.ts │ │ ├── app.po.ts │ │ └── tsconfig.e2e.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── protractor.conf.js │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── counter │ │ │ │ ├── counter.component.html │ │ │ │ ├── counter.component.spec.ts │ │ │ │ └── counter.component.ts │ │ │ ├── extra-features │ │ │ │ ├── child1 │ │ │ │ │ ├── child1.component.css │ │ │ │ │ ├── child1.component.html │ │ │ │ │ ├── child1.component.spec.ts │ │ │ │ │ └── child1.component.ts │ │ │ │ ├── child2 │ │ │ │ │ ├── child2.component.css │ │ │ │ │ ├── child2.component.html │ │ │ │ │ ├── child2.component.spec.ts │ │ │ │ │ └── child2.component.ts │ │ │ │ ├── child3 │ │ │ │ │ ├── child3.component.css │ │ │ │ │ ├── child3.component.html │ │ │ │ │ ├── child3.component.spec.ts │ │ │ │ │ └── child3.component.ts │ │ │ │ ├── extra-features.module.spec.ts │ │ │ │ ├── extra-features.module.ts │ │ │ │ └── test-component │ │ │ │ │ ├── test-component.component.css │ │ │ │ │ ├── test-component.component.html │ │ │ │ │ ├── test-component.component.spec.ts │ │ │ │ │ └── test-component.component.ts │ │ │ ├── fetch-data │ │ │ │ ├── fetch-data.component.html │ │ │ │ └── fetch-data.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── nav-menu │ │ │ │ ├── nav-menu.component.css │ │ │ │ ├── nav-menu.component.html │ │ │ │ └── nav-menu.component.ts │ │ │ ├── services │ │ │ │ ├── weather-forecast-prefetch.service.spec.ts │ │ │ │ ├── weather-forecast-prefetch.service.ts │ │ │ │ ├── weather-forecast.service.spec.ts │ │ │ │ └── weather-forecast.service.ts │ │ │ └── smart-date │ │ │ │ ├── smart-date.component.css │ │ │ │ ├── smart-date.component.html │ │ │ │ ├── smart-date.component.spec.ts │ │ │ │ └── smart-date.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ └── tsconfig.spec.json │ ├── tsconfig.json │ └── tslint.json │ ├── Controllers │ └── SampleDataController.cs │ └── ReadMe.txt ├── LICENSE └── README.md /Chapter01/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter01/ReadMe.txt -------------------------------------------------------------------------------- /Chapter01/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter01/tsconfig.json -------------------------------------------------------------------------------- /Chapter01/wwwroot/ts/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter01/wwwroot/ts/tests.js -------------------------------------------------------------------------------- /Chapter01/wwwroot/ts/tests.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter01/wwwroot/ts/tests.js.map -------------------------------------------------------------------------------- /Chapter01/wwwroot/ts/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter01/wwwroot/ts/tests.ts -------------------------------------------------------------------------------- /Chapter02/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter02/ReadMe.txt -------------------------------------------------------------------------------- /Chapter02/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter02/tsconfig.json -------------------------------------------------------------------------------- /Chapter02/wwwroot/ts/ArraysAndTuples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter02/wwwroot/ts/ArraysAndTuples.ts -------------------------------------------------------------------------------- /Chapter02/wwwroot/ts/DestructuringAndSpread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter02/wwwroot/ts/DestructuringAndSpread.ts -------------------------------------------------------------------------------- /Chapter02/wwwroot/ts/Interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter02/wwwroot/ts/Interfaces.ts -------------------------------------------------------------------------------- /Chapter02/wwwroot/ts/TypeScriptFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter02/wwwroot/ts/TypeScriptFunctions.ts -------------------------------------------------------------------------------- /Chapter02/wwwroot/ts/TypesOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter02/wwwroot/ts/TypesOperations.ts -------------------------------------------------------------------------------- /Chapter02/wwwroot/ts/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter02/wwwroot/ts/tests.js -------------------------------------------------------------------------------- /Chapter02/wwwroot/ts/tests.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter02/wwwroot/ts/tests.js.map -------------------------------------------------------------------------------- /Chapter03/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter03/ReadMe.txt -------------------------------------------------------------------------------- /Chapter03/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter03/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter03/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter03/package.json -------------------------------------------------------------------------------- /Chapter03/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter03/tsconfig.json -------------------------------------------------------------------------------- /Chapter03/wwwroot/ts/DOMTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter03/wwwroot/ts/DOMTests.ts -------------------------------------------------------------------------------- /Chapter03/wwwroot/ts/jQueryToDo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter03/wwwroot/ts/jQueryToDo.ts -------------------------------------------------------------------------------- /Chapter03/wwwroot/ts/plainToDo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter03/wwwroot/ts/plainToDo.ts -------------------------------------------------------------------------------- /Chapter04/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter04/ReadMe.txt -------------------------------------------------------------------------------- /Chapter04/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter04/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter04/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter04/package.json -------------------------------------------------------------------------------- /Chapter04/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter04/tsconfig.json -------------------------------------------------------------------------------- /Chapter04/wwwroot/ts/ClassTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter04/wwwroot/ts/ClassTest.ts -------------------------------------------------------------------------------- /Chapter04/wwwroot/ts/lib/AbstractLists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter04/wwwroot/ts/lib/AbstractLists.ts -------------------------------------------------------------------------------- /Chapter04/wwwroot/ts/lib/jQueryList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter04/wwwroot/ts/lib/jQueryList.ts -------------------------------------------------------------------------------- /Chapter04/wwwroot/ts/lib/plainList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter04/wwwroot/ts/lib/plainList.ts -------------------------------------------------------------------------------- /Chapter04/wwwroot/ts/modularToDoList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter04/wwwroot/ts/modularToDoList.ts -------------------------------------------------------------------------------- /Chapter05/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter05/ReadMe.txt -------------------------------------------------------------------------------- /Chapter05/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter05/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Chapter05/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter05/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter05/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter05/package.json -------------------------------------------------------------------------------- /Chapter05/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter05/tsconfig.json -------------------------------------------------------------------------------- /Chapter05/wwwroot/ts/genericConstraints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter05/wwwroot/ts/genericConstraints.ts -------------------------------------------------------------------------------- /Chapter05/wwwroot/ts/invoices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter05/wwwroot/ts/invoices.ts -------------------------------------------------------------------------------- /Chapter05/wwwroot/ts/lib/AbstractLists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter05/wwwroot/ts/lib/AbstractLists.ts -------------------------------------------------------------------------------- /Chapter05/wwwroot/ts/lib/aggregate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter05/wwwroot/ts/lib/aggregate.ts -------------------------------------------------------------------------------- /Chapter05/wwwroot/ts/lib/jQueryList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter05/wwwroot/ts/lib/jQueryList.ts -------------------------------------------------------------------------------- /Chapter05/wwwroot/ts/lib/plainList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter05/wwwroot/ts/lib/plainList.ts -------------------------------------------------------------------------------- /Chapter05/wwwroot/ts/modularToDoList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter05/wwwroot/ts/modularToDoList.ts -------------------------------------------------------------------------------- /Chapter06/Dynamic/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Dynamic/ReadMe.txt -------------------------------------------------------------------------------- /Chapter06/Dynamic/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Dynamic/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter06/Dynamic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Dynamic/package.json -------------------------------------------------------------------------------- /Chapter06/Dynamic/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Dynamic/tsconfig.json -------------------------------------------------------------------------------- /Chapter06/Dynamic/wwwroot/ts/lib/AbstractLists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Dynamic/wwwroot/ts/lib/AbstractLists.ts -------------------------------------------------------------------------------- /Chapter06/Dynamic/wwwroot/ts/lib/jQueryList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Dynamic/wwwroot/ts/lib/jQueryList.ts -------------------------------------------------------------------------------- /Chapter06/Dynamic/wwwroot/ts/lib/plainList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Dynamic/wwwroot/ts/lib/plainList.ts -------------------------------------------------------------------------------- /Chapter06/Dynamic/wwwroot/ts/modularToDoList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Dynamic/wwwroot/ts/modularToDoList.ts -------------------------------------------------------------------------------- /Chapter06/Modules/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Modules/ReadMe.txt -------------------------------------------------------------------------------- /Chapter06/Modules/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Modules/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter06/Modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Modules/package.json -------------------------------------------------------------------------------- /Chapter06/Modules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Modules/tsconfig.json -------------------------------------------------------------------------------- /Chapter06/Modules/wwwroot/ts/Anagraphic1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Modules/wwwroot/ts/Anagraphic1.ts -------------------------------------------------------------------------------- /Chapter06/Modules/wwwroot/ts/AnagraphicImporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Modules/wwwroot/ts/AnagraphicImporter.ts -------------------------------------------------------------------------------- /Chapter06/Modules/wwwroot/ts/AnagraphicImporter1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Modules/wwwroot/ts/AnagraphicImporter1.ts -------------------------------------------------------------------------------- /Chapter06/Modules/wwwroot/ts/AnagraphicImporter2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Modules/wwwroot/ts/AnagraphicImporter2.ts -------------------------------------------------------------------------------- /Chapter06/Modules/wwwroot/ts/AnagraphicImporter3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Modules/wwwroot/ts/AnagraphicImporter3.ts -------------------------------------------------------------------------------- /Chapter06/Modules/wwwroot/ts/lib/AbstractLists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Modules/wwwroot/ts/lib/AbstractLists.ts -------------------------------------------------------------------------------- /Chapter06/Modules/wwwroot/ts/lib/jQueryList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Modules/wwwroot/ts/lib/jQueryList.ts -------------------------------------------------------------------------------- /Chapter06/Modules/wwwroot/ts/lib/plainList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Modules/wwwroot/ts/lib/plainList.ts -------------------------------------------------------------------------------- /Chapter06/Modules/wwwroot/ts/modularToDoList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Modules/wwwroot/ts/modularToDoList.ts -------------------------------------------------------------------------------- /Chapter06/Namespaces/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Namespaces/ReadMe.txt -------------------------------------------------------------------------------- /Chapter06/Namespaces/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Namespaces/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter06/Namespaces/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Namespaces/package.json -------------------------------------------------------------------------------- /Chapter06/Namespaces/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Namespaces/tsconfig.json -------------------------------------------------------------------------------- /Chapter06/Namespaces/wwwroot/ts/Anagraphic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Namespaces/wwwroot/ts/Anagraphic.ts -------------------------------------------------------------------------------- /Chapter06/Namespaces/wwwroot/ts/lib/AbstractLists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Namespaces/wwwroot/ts/lib/AbstractLists.ts -------------------------------------------------------------------------------- /Chapter06/Namespaces/wwwroot/ts/lib/jQueryList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Namespaces/wwwroot/ts/lib/jQueryList.ts -------------------------------------------------------------------------------- /Chapter06/Namespaces/wwwroot/ts/lib/plainList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Namespaces/wwwroot/ts/lib/plainList.ts -------------------------------------------------------------------------------- /Chapter06/Namespaces/wwwroot/ts/modularToDoList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter06/Namespaces/wwwroot/ts/modularToDoList.ts -------------------------------------------------------------------------------- /Chapter07/VS Middleware/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/VS Middleware/ReadMe.txt -------------------------------------------------------------------------------- /Chapter07/VS Middleware/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/VS Middleware/Startup.cs -------------------------------------------------------------------------------- /Chapter07/VS Middleware/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/VS Middleware/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter07/VS Middleware/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/VS Middleware/appsettings.json -------------------------------------------------------------------------------- /Chapter07/VS Middleware/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/VS Middleware/package.json -------------------------------------------------------------------------------- /Chapter07/VS Middleware/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/VS Middleware/webpack.config.js -------------------------------------------------------------------------------- /Chapter07/VS Middleware/wwwroot/ts/lib/AbstractLists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/VS Middleware/wwwroot/ts/lib/AbstractLists.ts -------------------------------------------------------------------------------- /Chapter07/VS Middleware/wwwroot/ts/lib/jQueryList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/VS Middleware/wwwroot/ts/lib/jQueryList.ts -------------------------------------------------------------------------------- /Chapter07/VS Middleware/wwwroot/ts/lib/plainList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/VS Middleware/wwwroot/ts/lib/plainList.ts -------------------------------------------------------------------------------- /Chapter07/VS Middleware/wwwroot/ts/modularToDoList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/VS Middleware/wwwroot/ts/modularToDoList.ts -------------------------------------------------------------------------------- /Chapter07/complete/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/ReadMe.txt -------------------------------------------------------------------------------- /Chapter07/complete/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/Startup.cs -------------------------------------------------------------------------------- /Chapter07/complete/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter07/complete/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter07/complete/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/package.json -------------------------------------------------------------------------------- /Chapter07/complete/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/tsconfig.json -------------------------------------------------------------------------------- /Chapter07/complete/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/webpack.config.js -------------------------------------------------------------------------------- /Chapter07/complete/webpack.config.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/webpack.config.vendor.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/448c34a56d699c29117adc64c43affeb.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/448c34a56d699c29117adc64c43affeb.woff2 -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/89889688147bd7575d6327160d64e760.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/89889688147bd7575d6327160d64e760.svg -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/common~fake~main.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/common~fake~main.chunk.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/common~fake~main.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/common~fake~main.chunk.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/common~fake~plainList.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/common~fake~plainList.chunk.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/common~fake~plainList.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/common~fake~plainList.chunk.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/e18bbf611f2a2e43afc071aa2f4e1512.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/e18bbf611f2a2e43afc071aa2f4e1512.ttf -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/f4769f9bdb7466be65088239c12046d1.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/f4769f9bdb7466be65088239c12046d1.eot -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/fa2772327f55d8198301fdb8bcfc8158.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/fa2772327f55d8198301fdb8bcfc8158.woff -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/fake.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/fake.bundle.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/fake.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/fake.bundle.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/main.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/main.bundle.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/main.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/main.bundle.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/main.css -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/plainList.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/plainList.chunk.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/plainList.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/plainList.chunk.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/vendor-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/vendor-manifest.json -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/vendor.css -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/vendor.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/vendors~main.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/vendors~main.chunk.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/dist/vendors~main.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/dist/vendors~main.chunk.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/html/item_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/html/item_template.html -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/Anagraphic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/Anagraphic.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/Anagraphic.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/Anagraphic.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/Anagraphic1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/Anagraphic1.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/Anagraphic1.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/Anagraphic1.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/AnagraphicImporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/AnagraphicImporter.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/AnagraphicImporter.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/AnagraphicImporter.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/AnagraphicImporter1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/AnagraphicImporter1.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/AnagraphicImporter1.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/AnagraphicImporter1.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/AnagraphicImporter2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/AnagraphicImporter2.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/AnagraphicImporter2.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/AnagraphicImporter2.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/AnagraphicImporter3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/AnagraphicImporter3.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/AnagraphicImporter3.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/AnagraphicImporter3.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/ClassTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/ClassTest.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/ClassTest.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/ClassTest.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/DOMTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/DOMTests.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/DOMTests.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/DOMTests.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/fake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/fake.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/fake.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/fake.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/genericConstraints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/genericConstraints.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/genericConstraints.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/genericConstraints.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/invoices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/invoices.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/invoices.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/invoices.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/jQueryToDo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/jQueryToDo.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/jQueryToDo.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/jQueryToDo.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/lib/AbstractLists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/lib/AbstractLists.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/lib/AbstractLists.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/lib/AbstractLists.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/lib/aggregate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/lib/aggregate.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/lib/aggregate.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/lib/aggregate.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/lib/jQueryList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/lib/jQueryList.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/lib/jQueryList.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/lib/jQueryList.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/lib/plainList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/lib/plainList.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/lib/plainList.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/lib/plainList.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/modularToDoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/modularToDoList.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/modularToDoList.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/modularToDoList.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/plainToDo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/plainToDo.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/plainToDo.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/plainToDo.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/site.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/js/site.js.map -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/ts/fake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/ts/fake.ts -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/ts/lib/AbstractLists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/ts/lib/AbstractLists.ts -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/ts/lib/jQueryList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/ts/lib/jQueryList.ts -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/ts/lib/plainList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/ts/lib/plainList.ts -------------------------------------------------------------------------------- /Chapter07/complete/wwwroot/ts/modularToDoList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/complete/wwwroot/ts/modularToDoList.ts -------------------------------------------------------------------------------- /Chapter07/simple/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/simple/ReadMe.txt -------------------------------------------------------------------------------- /Chapter07/simple/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/simple/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter07/simple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/simple/package.json -------------------------------------------------------------------------------- /Chapter07/simple/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/simple/tsconfig.json -------------------------------------------------------------------------------- /Chapter07/simple/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/simple/webpack.config.js -------------------------------------------------------------------------------- /Chapter07/simple/wwwroot/dist/main.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/simple/wwwroot/dist/main.bundle.js -------------------------------------------------------------------------------- /Chapter07/simple/wwwroot/dist/main.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/simple/wwwroot/dist/main.bundle.js.map -------------------------------------------------------------------------------- /Chapter07/simple/wwwroot/ts/lib/AbstractLists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/simple/wwwroot/ts/lib/AbstractLists.ts -------------------------------------------------------------------------------- /Chapter07/simple/wwwroot/ts/lib/jQueryList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/simple/wwwroot/ts/lib/jQueryList.ts -------------------------------------------------------------------------------- /Chapter07/simple/wwwroot/ts/lib/plainList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/simple/wwwroot/ts/lib/plainList.ts -------------------------------------------------------------------------------- /Chapter07/simple/wwwroot/ts/modularToDoList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter07/simple/wwwroot/ts/modularToDoList.ts -------------------------------------------------------------------------------- /Chapter08/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/ReadMe.txt -------------------------------------------------------------------------------- /Chapter08/domlist/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter08/domlist/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/.vscode/settings.json -------------------------------------------------------------------------------- /Chapter08/domlist/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter08/domlist/dist/AbstractLists.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/dist/AbstractLists.d.ts -------------------------------------------------------------------------------- /Chapter08/domlist/dist/AbstractLists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/dist/AbstractLists.js -------------------------------------------------------------------------------- /Chapter08/domlist/dist/AbstractLists.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/dist/AbstractLists.js.map -------------------------------------------------------------------------------- /Chapter08/domlist/dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/dist/index.d.ts -------------------------------------------------------------------------------- /Chapter08/domlist/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/dist/index.js -------------------------------------------------------------------------------- /Chapter08/domlist/dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/dist/index.js.map -------------------------------------------------------------------------------- /Chapter08/domlist/dist/jQueryList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/dist/jQueryList.d.ts -------------------------------------------------------------------------------- /Chapter08/domlist/dist/jQueryList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/dist/jQueryList.js -------------------------------------------------------------------------------- /Chapter08/domlist/dist/jQueryList.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/dist/jQueryList.js.map -------------------------------------------------------------------------------- /Chapter08/domlist/dist/plainList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/dist/plainList.d.ts -------------------------------------------------------------------------------- /Chapter08/domlist/dist/plainList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/dist/plainList.js -------------------------------------------------------------------------------- /Chapter08/domlist/dist/plainList.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/dist/plainList.js.map -------------------------------------------------------------------------------- /Chapter08/domlist/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/package-lock.json -------------------------------------------------------------------------------- /Chapter08/domlist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/package.json -------------------------------------------------------------------------------- /Chapter08/domlist/sources/AbstractLists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/sources/AbstractLists.ts -------------------------------------------------------------------------------- /Chapter08/domlist/sources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/sources/index.ts -------------------------------------------------------------------------------- /Chapter08/domlist/sources/jQueryList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/sources/jQueryList.ts -------------------------------------------------------------------------------- /Chapter08/domlist/sources/plainList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/sources/plainList.ts -------------------------------------------------------------------------------- /Chapter08/domlist/spec/plainDomSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/spec/plainDomSpec.js -------------------------------------------------------------------------------- /Chapter08/domlist/spec/plainDomSpec.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/spec/plainDomSpec.js.map -------------------------------------------------------------------------------- /Chapter08/domlist/spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/spec/support/jasmine.json -------------------------------------------------------------------------------- /Chapter08/domlist/specSources/plainDomSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/specSources/plainDomSpec.ts -------------------------------------------------------------------------------- /Chapter08/domlist/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/test.ts -------------------------------------------------------------------------------- /Chapter08/domlist/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/tsconfig.json -------------------------------------------------------------------------------- /Chapter08/domlist/tsconfig.tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter08/domlist/tsconfig.tests.json -------------------------------------------------------------------------------- /Chapter09/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter09/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter09/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter09/ReadMe.txt -------------------------------------------------------------------------------- /Chapter09/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter09/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter09/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter09/package.json -------------------------------------------------------------------------------- /Chapter09/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter09/tsconfig.json -------------------------------------------------------------------------------- /Chapter09/wwwroot/ts/ApiCall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter09/wwwroot/ts/ApiCall.ts -------------------------------------------------------------------------------- /Chapter09/wwwroot/ts/BuiltInIterables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter09/wwwroot/ts/BuiltInIterables.ts -------------------------------------------------------------------------------- /Chapter09/wwwroot/ts/Decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter09/wwwroot/ts/Decorators.ts -------------------------------------------------------------------------------- /Chapter09/wwwroot/ts/DecoratorsTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter09/wwwroot/ts/DecoratorsTests.ts -------------------------------------------------------------------------------- /Chapter09/wwwroot/ts/Iterables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter09/wwwroot/ts/Iterables.ts -------------------------------------------------------------------------------- /Chapter09/wwwroot/ts/SymbolExamples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter09/wwwroot/ts/SymbolExamples.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/.editorconfig -------------------------------------------------------------------------------- /Chapter10/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/.gitignore -------------------------------------------------------------------------------- /Chapter10/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/README.md -------------------------------------------------------------------------------- /Chapter10/ClientApp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/angular.json -------------------------------------------------------------------------------- /Chapter10/ClientApp/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/e2e/app.po.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /Chapter10/ClientApp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/karma.conf.js -------------------------------------------------------------------------------- /Chapter10/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Chapter10/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/package.json -------------------------------------------------------------------------------- /Chapter10/ClientApp/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/protractor.conf.js -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/app.component.css -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/counter/counter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/counter/counter.component.html -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/counter/counter.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/counter/counter.component.spec.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/counter/counter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/counter/counter.component.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/extra-features/extra-features.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/extra-features/extra-features.module.spec.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/extra-features/extra-features.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/extra-features/extra-features.module.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/extra-features/test-component/test-component.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/extra-features/test-component/test-component.component.html: -------------------------------------------------------------------------------- 1 |

2 | extra module test-component works! 3 |

4 | -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/extra-features/test-component/test-component.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/extra-features/test-component/test-component.component.spec.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/extra-features/test-component/test-component.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/extra-features/test-component/test-component.component.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/fetch-data/fetch-data.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/fetch-data/fetch-data.component.html -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/fetch-data/fetch-data.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/fetch-data/fetch-data.component.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/home/home.component.html -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/home/home.component.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/nav-menu/nav-menu.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/nav-menu/nav-menu.component.css -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/nav-menu/nav-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/nav-menu/nav-menu.component.html -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/nav-menu/nav-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/nav-menu/nav-menu.component.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/smart-date/smart-date.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/smart-date/smart-date.component.html: -------------------------------------------------------------------------------- 1 |

2 | smart-date works! 3 |

4 | -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/smart-date/smart-date.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/smart-date/smart-date.component.spec.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/app/smart-date/smart-date.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/app/smart-date/smart-date.component.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/index.html -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/main.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/styles.css -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/test.ts -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/src/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter10/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /Chapter10/ClientApp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ClientApp/tslint.json -------------------------------------------------------------------------------- /Chapter10/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter10/ReadMe.txt -------------------------------------------------------------------------------- /Chapter11/ClientApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/.editorconfig -------------------------------------------------------------------------------- /Chapter11/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/.gitignore -------------------------------------------------------------------------------- /Chapter11/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/README.md -------------------------------------------------------------------------------- /Chapter11/ClientApp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/angular.json -------------------------------------------------------------------------------- /Chapter11/ClientApp/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/e2e/protractor.conf.js -------------------------------------------------------------------------------- /Chapter11/ClientApp/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/e2e/src/app.po.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /Chapter11/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Chapter11/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/package.json -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/capitalize.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/capitalize.pipe.spec.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/capitalize.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/capitalize.pipe.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/font-size/font-size.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/font-size/font-size.component.css -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/font-size/font-size.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/font-size/font-size.component.html -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/font-size/font-size.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/font-size/font-size.component.spec.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/font-size/font-size.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/font-size/font-size.component.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/form-test/form-test.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/form-test/form-test.component.css -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/form-test/form-test.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/form-test/form-test.component.html -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/form-test/form-test.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/form-test/form-test.component.spec.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/form-test/form-test.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/form-test/form-test.component.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/modal-test/modal-test.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/modal-test/modal-test.component.html -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/modal-test/modal-test.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/modal-test/modal-test.component.spec.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/modal-test/modal-test.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/modal-test/modal-test.component.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/app/simple-order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/app/simple-order.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/browserslist -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/favicon.ico -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/index.html -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/karma.conf.js -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/main.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/styles.css -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/test.ts -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter11/ClientApp/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/src/tslint.json -------------------------------------------------------------------------------- /Chapter11/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /Chapter11/ClientApp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ClientApp/tslint.json -------------------------------------------------------------------------------- /Chapter11/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter11/ReadMe.txt -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/.editorconfig -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/.gitignore -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/README.md -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/angular.json -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/e2e/app.po.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/karma.conf.js -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/package.json -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/protractor.conf.js -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/app.component.css -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/counter/counter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/counter/counter.component.html -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/counter/counter.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/counter/counter.component.spec.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/counter/counter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/counter/counter.component.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/extra-features/extra-features.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/extra-features/extra-features.module.spec.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/extra-features/extra-features.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/extra-features/extra-features.module.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/extra-features/test-component/test-component.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/extra-features/test-component/test-component.component.html: -------------------------------------------------------------------------------- 1 |

2 | extra module test-component works! 3 |

4 | -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/extra-features/test-component/test-component.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/extra-features/test-component/test-component.component.spec.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/extra-features/test-component/test-component.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/extra-features/test-component/test-component.component.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/fetch-data/fetch-data.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/fetch-data/fetch-data.component.html -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/fetch-data/fetch-data.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/fetch-data/fetch-data.component.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/home/home.component.html -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/home/home.component.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/nav-menu/nav-menu.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/nav-menu/nav-menu.component.css -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/nav-menu/nav-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/nav-menu/nav-menu.component.html -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/nav-menu/nav-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/nav-menu/nav-menu.component.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/smart-date/smart-date.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/smart-date/smart-date.component.html: -------------------------------------------------------------------------------- 1 |

2 | smart-date works! 3 |

4 | -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/smart-date/smart-date.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/smart-date/smart-date.component.spec.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/app/smart-date/smart-date.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/app/smart-date/smart-date.component.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/index.html -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/main.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/styles.css -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/test.ts -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/src/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /Chapter12/Animations/ClientApp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ClientApp/tslint.json -------------------------------------------------------------------------------- /Chapter12/Animations/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Animations/ReadMe.txt -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/.editorconfig -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/.gitignore -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/README.md -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/angular.json -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/e2e/protractor.conf.js -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/e2e/src/app.po.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/package.json -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/capitalize.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/capitalize.pipe.spec.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/capitalize.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/capitalize.pipe.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/directives/input-error.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/directives/input-error.directive.spec.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/directives/input-error.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/directives/input-error.directive.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/directives/lens.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/directives/lens.directive.spec.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/directives/lens.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/directives/lens.directive.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/directives/max.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/directives/max.directive.spec.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/directives/max.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/directives/max.directive.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/directives/min.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/directives/min.directive.spec.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/directives/min.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/directives/min.directive.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/directives/step.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/directives/step.directive.spec.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/directives/step.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/directives/step.directive.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/font-size/font-size.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/font-size/font-size.component.css -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/font-size/font-size.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/font-size/font-size.component.html -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/font-size/font-size.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/font-size/font-size.component.spec.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/font-size/font-size.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/font-size/font-size.component.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/form-test/form-test.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/form-test/form-test.component.css -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/form-test/form-test.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/form-test/form-test.component.html -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/form-test/form-test.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/form-test/form-test.component.spec.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/form-test/form-test.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/form-test/form-test.component.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/modal-test/modal-test.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/modal-test/modal-test.component.html -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/modal-test/modal-test.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/modal-test/modal-test.component.spec.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/modal-test/modal-test.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/modal-test/modal-test.component.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/app/simple-order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/app/simple-order.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/browserslist -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/favicon.ico -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/index.html -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/karma.conf.js -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/main.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/styles.css -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/test.ts -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/src/tslint.json -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /Chapter12/Directives/ClientApp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ClientApp/tslint.json -------------------------------------------------------------------------------- /Chapter12/Directives/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter12/Directives/ReadMe.txt -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/.editorconfig -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/.gitignore -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/README.md -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/angular.json -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/e2e/protractor.conf.js -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/e2e/src/app.po.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/package.json -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/app-tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/app-tokens.js -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/app-tokens.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/app-tokens.js.map -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/app-tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/app-tokens.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/capitalize.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/capitalize.pipe.spec.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/capitalize.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/capitalize.pipe.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/directives/input-error.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/directives/input-error.directive.spec.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/directives/input-error.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/directives/input-error.directive.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/directives/lens.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/directives/lens.directive.spec.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/directives/lens.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/directives/lens.directive.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/directives/max.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/directives/max.directive.spec.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/directives/max.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/directives/max.directive.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/directives/min.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/directives/min.directive.spec.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/directives/min.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/directives/min.directive.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/directives/step.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/directives/step.directive.spec.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/directives/step.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/directives/step.directive.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/en-US/input-error-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/en-US/input-error-messages.js -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/en-US/input-error-messages.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/en-US/input-error-messages.js.map -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/en-US/input-error-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/en-US/input-error-messages.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/font-size/font-size.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/font-size/font-size.component.css -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/font-size/font-size.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/font-size/font-size.component.html -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/font-size/font-size.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/font-size/font-size.component.spec.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/font-size/font-size.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/font-size/font-size.component.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/form-test/form-test.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/form-test/form-test.component.css -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/form-test/form-test.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/form-test/form-test.component.html -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/form-test/form-test.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/form-test/form-test.component.spec.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/form-test/form-test.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/form-test/form-test.component.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/modal-test/modal-test.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/modal-test/modal-test.component.html -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/modal-test/modal-test.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/modal-test/modal-test.component.spec.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/modal-test/modal-test.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/modal-test/modal-test.component.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/app/simple-order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/app/simple-order.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/browserslist -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/favicon.ico -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/index.html -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/karma.conf.js -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/main.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/styles.css -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/test.ts -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/src/tslint.json -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ClientApp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ClientApp/tslint.json -------------------------------------------------------------------------------- /Chapter13/DependencyInjection/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/DependencyInjection/ReadMe.txt -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/.editorconfig -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/.gitignore -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/README.md -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/angular.json -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/e2e/app.po.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/karma.conf.js -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/package.json -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/protractor.conf.js -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/app.component.css -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/counter/counter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/counter/counter.component.html -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/counter/counter.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/counter/counter.component.spec.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/counter/counter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/counter/counter.component.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/child1/child1.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/child1/child1.component.html: -------------------------------------------------------------------------------- 1 |

2 | child1 works! 3 |

4 | -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/child1/child1.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/extra-features/child1/child1.component.spec.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/child1/child1.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/extra-features/child1/child1.component.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/child2/child2.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/child2/child2.component.html: -------------------------------------------------------------------------------- 1 |

2 | child2 works! 3 |

4 | -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/child2/child2.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/extra-features/child2/child2.component.spec.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/child2/child2.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/extra-features/child2/child2.component.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/child3/child3.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/child3/child3.component.html: -------------------------------------------------------------------------------- 1 |

2 | child3 works! 3 |

4 | -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/child3/child3.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/extra-features/child3/child3.component.spec.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/child3/child3.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/extra-features/child3/child3.component.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/extra-features.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/extra-features/extra-features.module.spec.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/extra-features.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/extra-features/extra-features.module.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/test-component/test-component.component.css: -------------------------------------------------------------------------------- 1 | div { 2 | min-height:50px; 3 | } 4 | -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/test-component/test-component.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/extra-features/test-component/test-component.component.html -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/test-component/test-component.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/extra-features/test-component/test-component.component.spec.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/extra-features/test-component/test-component.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/extra-features/test-component/test-component.component.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/fetch-data/fetch-data.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/fetch-data/fetch-data.component.html -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/fetch-data/fetch-data.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/fetch-data/fetch-data.component.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/home/home.component.html -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/home/home.component.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/nav-menu/nav-menu.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/nav-menu/nav-menu.component.css -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/nav-menu/nav-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/nav-menu/nav-menu.component.html -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/nav-menu/nav-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/nav-menu/nav-menu.component.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/services/weather-forecast-prefetch.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/services/weather-forecast-prefetch.service.spec.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/services/weather-forecast-prefetch.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/services/weather-forecast-prefetch.service.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/services/weather-forecast.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/services/weather-forecast.service.spec.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/services/weather-forecast.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/services/weather-forecast.service.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/smart-date/smart-date.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/smart-date/smart-date.component.html: -------------------------------------------------------------------------------- 1 |

2 | smart-date works! 3 |

4 | -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/smart-date/smart-date.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/smart-date/smart-date.component.spec.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/app/smart-date/smart-date.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/app/smart-date/smart-date.component.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/index.html -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/main.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/styles.css -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/test.ts -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/src/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /Chapter13/Final/ClientApp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ClientApp/tslint.json -------------------------------------------------------------------------------- /Chapter13/Final/Controllers/SampleDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/Controllers/SampleDataController.cs -------------------------------------------------------------------------------- /Chapter13/Final/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/Chapter13/Final/ReadMe.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-TypeScript-for-CSharp-and-.NET-Core-Developers/HEAD/README.md --------------------------------------------------------------------------------