├── README.md
├── angular-allow-only-numerics-digits-textbox-field
├── package-lock.json
├── package.json
├── readme.rst
└── src
│ ├── app
│ ├── app.component.css
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ └── app.module.ts
│ └── index.html
├── angular-autocomplete
├── package-lock.json
├── package.json
├── readme.rst
└── src
│ ├── app
│ ├── app-routing.module.ts
│ ├── app.component.css
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ ├── app.module.ts
│ ├── search.service.spec.ts
│ └── search.service.ts
│ └── assets
│ └── data
│ └── results.json
├── angular-check-uncheck-individual-all-checkbox-table-rows
├── readme.rst
├── version-13
│ └── src
│ │ ├── app
│ │ ├── app.component.css
│ │ ├── app.component.html
│ │ ├── app.component.spec.ts
│ │ ├── app.component.ts
│ │ ├── app.module.ts
│ │ ├── product.service.ts
│ │ └── product.ts
│ │ └── index.html
└── version-9
│ ├── package-lock.json
│ ├── package.json
│ └── src
│ ├── app
│ ├── app.component.css
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ ├── app.module.ts
│ ├── product.service.ts
│ └── product.ts
│ └── index.html
├── angular-custom-directives
├── package.json
├── readme.rst
└── src
│ └── app
│ ├── app-module.ts
│ ├── app-routing-module.ts
│ ├── app.css
│ ├── app.html
│ ├── app.ts
│ ├── highlight.ts
│ └── tooltip.ts
├── angular-cut-copy-paste-prevention
├── package.json
├── readme.rst
└── src
│ ├── app
│ ├── app.component.html
│ ├── app.component.ts
│ ├── app.config.server.ts
│ ├── app.config.ts
│ ├── app.routes.ts
│ └── disable-cut-copy-paste.directive.ts
│ └── index.html
├── angular-delete-multiple-rows-from-table
├── readme.rst
├── version-13
│ └── src
│ │ ├── app
│ │ ├── app.component.css
│ │ ├── app.component.html
│ │ ├── app.component.spec.ts
│ │ ├── app.component.ts
│ │ ├── app.module.ts
│ │ ├── product.service.ts
│ │ └── product.ts
│ │ └── index.html
└── version-9
│ ├── package-lock.json
│ ├── package.json
│ └── src
│ ├── app
│ ├── app.component.css
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ ├── app.module.ts
│ ├── product.service.ts
│ └── product.ts
│ └── index.html
├── angular-dependent-dropdown
├── angular-17
│ ├── package.json
│ └── src
│ │ └── app
│ │ ├── app.component.css
│ │ ├── app.component.html
│ │ ├── app.component.ts
│ │ ├── app.config.server.ts
│ │ ├── app.config.ts
│ │ └── app.routes.ts
├── package_11.json
├── package_8.json
├── readme.rst
└── src
│ ├── app
│ ├── app-routing.module.ts
│ ├── app.component.css
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ └── app.module.ts
│ └── index.html
├── angular-feature-module-lazy-loading
├── packaje.json
├── readme.rst
└── src
│ └── app
│ ├── app-module.ts
│ ├── app-routing-module.ts
│ ├── app.html
│ ├── app.ts
│ ├── products
│ ├── product-detail
│ │ ├── product-detail.html
│ │ └── product-detail.ts
│ ├── products-module.ts
│ ├── products-routing-module.ts
│ ├── products.html
│ └── products.ts
│ └── users
│ ├── user-detail
│ ├── user-detail.html
│ └── user-detail.ts
│ ├── users-module.ts
│ ├── users-routing-module.ts
│ ├── users.html
│ └── users.ts
├── angular-file-download
├── readme.rst
├── version-13
│ └── angular-file-download
│ │ ├── package-lock.json
│ │ ├── package.json
│ │ └── src
│ │ ├── app
│ │ ├── app-routing.module.ts
│ │ ├── app.component.css
│ │ ├── app.component.html
│ │ ├── app.component.spec.ts
│ │ ├── app.component.ts
│ │ ├── app.module.ts
│ │ ├── file.service.spec.ts
│ │ └── file.service.ts
│ │ └── index.html
├── version-15
│ └── angular-file-download
│ │ ├── package-lock.json
│ │ ├── package.json
│ │ └── src
│ │ ├── app
│ │ ├── app-routing.module.ts
│ │ ├── app.component.css
│ │ ├── app.component.html
│ │ ├── app.component.ts
│ │ ├── app.module.ts
│ │ └── file.service.ts
│ │ └── index.html
└── version-upto-12
│ └── angular-file-download
│ └── app
│ ├── app-routing.module.ts
│ ├── app.component.css
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ ├── app.module.ts
│ └── file.service.ts
├── angular-flask-rest-mongodb
├── package.json
├── readme.rst
└── src
│ └── app
│ ├── app-routing.module.ts
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ ├── app.module.ts
│ ├── user-add
│ ├── user-add.component.html
│ ├── user-add.component.spec.ts
│ └── user-add.component.ts
│ ├── user-detail
│ ├── user-detail.component.html
│ ├── user-detail.component.spec.ts
│ └── user-detail.component.ts
│ ├── user-edit
│ ├── user-edit.component.html
│ ├── user-edit.component.spec.ts
│ └── user-edit.component.ts
│ ├── user-list
│ ├── user-list.component.html
│ ├── user-list.component.spec.ts
│ └── user-list.component.ts
│ ├── user.service.ts
│ └── user.ts
├── angular-flask
├── package.json
├── readme.rst
├── server.ts
└── src
│ └── app
│ ├── app.component.html
│ ├── app.component.ts
│ ├── app.config.server.ts
│ ├── app.config.ts
│ ├── app.routes.ts
│ ├── user-add
│ ├── user-add.component.html
│ └── user-add.component.ts
│ ├── user-detail
│ ├── user-detail.component.html
│ └── user-detail.component.ts
│ ├── user-edit
│ ├── user-edit.component.html
│ └── user-edit.component.ts
│ ├── user-list
│ ├── user-list.component.html
│ └── user-list.component.ts
│ ├── user.service.ts
│ └── user.ts
├── angular-html-table-alternate-row-color
├── readme.rst
├── version-13
│ └── src
│ │ ├── app
│ │ ├── app.component.css
│ │ ├── app.component.html
│ │ ├── app.component.spec.ts
│ │ ├── app.component.ts
│ │ ├── app.module.ts
│ │ ├── product.service.ts
│ │ └── product.ts
│ │ └── index.html
└── version-9
│ ├── package-lock.json
│ ├── package.json
│ └── src
│ ├── app
│ ├── app.component.css
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ ├── app.module.ts
│ ├── product.service.ts
│ └── product.ts
│ └── index.html
├── angular-image-upload-display
├── package-lock_11.json
├── package-lock_8.json
├── package_11.json
├── package_8.json
├── readme.rst
└── src
│ ├── app
│ ├── app-routing.module.ts
│ ├── app.component.css
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ └── app.module.ts
│ └── index.html
├── angular-jest-unit-test
├── jest.config.ts
├── package.json
├── readme.rst
├── setup-jest.ts
├── src
│ └── app
│ │ ├── app-routing.module.ts
│ │ ├── app.component.html
│ │ ├── app.component.spec.ts
│ │ ├── app.component.ts
│ │ └── app.module.ts
└── tsconfig.spec.json
├── angular-load-local-json
├── package-lock.json
├── package-lock_angular14.json
├── package.json
├── package_angular14.json
├── readme.rst
└── src
│ ├── app
│ ├── app-routing.module.ts
│ ├── app.component.css
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ ├── app.module.ts
│ ├── file.service.spec.ts
│ └── file.service.ts
│ └── assets
│ └── data
│ └── results.json
├── angular-multiple-environments-setup
├── angular.json
├── package-lock.json
├── package.json
├── readme.rst
└── src
│ ├── app
│ ├── app-routing.module.ts
│ ├── app.component.css
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ └── app.module.ts
│ ├── environments
│ ├── environment.prod.ts
│ ├── environment.sit.ts
│ ├── environment.ts
│ └── environment.uat.ts
│ └── index.html
├── angular-okta-sso-role-based-access
├── package-lock.json
├── package.json
├── readme.rst
└── src
│ ├── app
│ ├── app-routing.module.ts
│ ├── app.component.css
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ ├── app.module.ts
│ ├── auth.guard.spec.ts
│ ├── auth.guard.ts
│ ├── auth.service.spec.ts
│ ├── auth.service.ts
│ ├── dashboard
│ │ ├── dashboard.component.css
│ │ ├── dashboard.component.html
│ │ ├── dashboard.component.spec.ts
│ │ └── dashboard.component.ts
│ ├── expired.component.ts
│ ├── login
│ │ ├── login.component.css
│ │ ├── login.component.html
│ │ ├── login.component.spec.ts
│ │ └── login.component.ts
│ ├── protected
│ │ ├── protected.component.css
│ │ ├── protected.component.html
│ │ ├── protected.component.spec.ts
│ │ └── protected.component.ts
│ ├── token.service.spec.ts
│ ├── token.service.ts
│ ├── unauthorized.component.ts
│ └── updatepage
│ │ ├── updatepage.component.css
│ │ ├── updatepage.component.html
│ │ ├── updatepage.component.spec.ts
│ │ └── updatepage.component.ts
│ ├── environments
│ ├── environment.prod.ts
│ └── environment.ts
│ └── index.html
├── angular-okta-sso
├── package-lock.json
├── package.json
├── readme.rst
└── src
│ ├── app
│ ├── app-routing.module.ts
│ ├── app.component.css
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ ├── app.module.ts
│ └── auth
│ │ ├── auth.component.css
│ │ ├── auth.component.html
│ │ ├── auth.component.spec.ts
│ │ └── auth.component.ts
│ ├── assets
│ └── .gitkeep
│ ├── environments
│ ├── environment.prod.ts
│ └── environment.ts
│ ├── favicon.ico
│ ├── index.html
│ ├── main.ts
│ ├── polyfills.ts
│ ├── styles.css
│ └── test.ts
├── angular-pagination
├── package.json
├── readme.md
└── src
│ └── app
│ ├── app-module.ts
│ ├── app-routing-module.ts
│ ├── app.css
│ ├── app.html
│ ├── app.module.server.ts
│ ├── app.routes.server.ts
│ ├── app.ts
│ ├── tutorial-service.ts
│ └── tutorial.ts
├── angular-parent-child-data-share
├── package.json
├── readme.rst
└── src
│ └── app
│ ├── app-routing.module.ts
│ ├── app.component.html
│ ├── app.component.ts
│ ├── app.module.server.ts
│ ├── app.module.ts
│ └── child
│ ├── child.component.html
│ └── child.component.ts
├── angular-photo-gallery
├── angular.json
├── package-lock.json
├── package.json
├── readme.rst
└── src
│ ├── app
│ ├── app-routing.module.ts
│ ├── app.component.css
│ ├── app.component.html
│ ├── app.component.ts
│ └── app.module.ts
│ ├── assets
│ └── images
│ │ ├── image1.jpg
│ │ ├── image10.jpg
│ │ ├── image11.jpg
│ │ ├── image12.jpg
│ │ ├── image2.jpg
│ │ ├── image3.jpg
│ │ ├── image4.jpg
│ │ ├── image5.jpg
│ │ ├── image6.jpg
│ │ ├── image7.jpg
│ │ ├── image8.jpg
│ │ ├── image9.jpg
│ │ └── thumbs
│ │ ├── image1.jpg
│ │ ├── image10.jpg
│ │ ├── image11.jpg
│ │ ├── image12.jpg
│ │ ├── image2.jpg
│ │ ├── image3.jpg
│ │ ├── image4.jpg
│ │ ├── image5.jpg
│ │ ├── image6.jpg
│ │ ├── image7.jpg
│ │ ├── image8.jpg
│ │ └── image9.jpg
│ └── index.html
├── angular-prevent-new-line-text-box
├── package-lock.json
├── package.json
├── readme.rst
└── src
│ ├── app
│ ├── app-routing.module.ts
│ ├── app.component.html
│ ├── app.component.ts
│ └── app.module.ts
│ └── index.html
├── angular-reactive-form-synchronous-asynchronous-validators
├── readme.md
└── src
│ └── app
│ ├── app-module.ts
│ ├── app-routing-module.ts
│ ├── app.html
│ ├── app.module.server.ts
│ ├── app.routes.server.ts
│ ├── app.ts
│ └── email.service.ts
├── angular-reactive-forms
├── package.json
├── readme.rst
└── src
│ └── app
│ ├── app-module.ts
│ ├── app-routing-module.ts
│ ├── app.html
│ ├── app.module.server.ts
│ ├── app.routes.server.ts
│ └── app.ts
├── angular-reactive
├── readme.rst
└── src
│ └── app
│ ├── app-routing.module.ts
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ ├── app.module.ts
│ ├── website-add
│ ├── website-add.component.html
│ ├── website-add.component.spec.ts
│ └── website-add.component.ts
│ ├── website-detail
│ ├── website-detail.component.html
│ ├── website-detail.component.spec.ts
│ └── website-detail.component.ts
│ ├── website-edit
│ ├── website-edit.component.html
│ ├── website-edit.component.spec.ts
│ └── website-edit.component.ts
│ ├── website-list
│ ├── website-list.component.html
│ ├── website-list.component.spec.ts
│ └── website-list.component.ts
│ ├── website.service.ts
│ └── website.ts
├── angular-reusable-button-component
├── package.json
├── readme.rst
└── src
│ └── app
│ ├── app-routing.module.ts
│ ├── app.component.html
│ ├── app.component.ts
│ ├── app.module.server.ts
│ ├── app.module.ts
│ └── button
│ ├── button.component.css
│ ├── button.component.html
│ └── button.component.ts
├── angular-spring-boot-crud-app
├── package-lock.json
├── package.json
├── readme.rst
└── src
│ └── app
│ ├── app-routing.module.ts
│ ├── app.component.css
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ ├── app.module.ts
│ ├── website-add
│ ├── website-add.component.css
│ ├── website-add.component.html
│ ├── website-add.component.spec.ts
│ └── website-add.component.ts
│ ├── website-detail
│ ├── website-detail.component.css
│ ├── website-detail.component.html
│ ├── website-detail.component.spec.ts
│ └── website-detail.component.ts
│ ├── website-edit
│ ├── website-edit.component.css
│ ├── website-edit.component.html
│ ├── website-edit.component.spec.ts
│ └── website-edit.component.ts
│ ├── website-list
│ ├── website-list.component.css
│ ├── website-list.component.html
│ ├── website-list.component.spec.ts
│ └── website-list.component.ts
│ ├── website.model.ts
│ ├── website.service.spec.ts
│ └── website.service.ts
├── angular-spring-boot-jwt-auth
├── package-lock.json
├── package.json
├── readme.rst
└── src
│ ├── app
│ ├── app-routing.module.ts
│ ├── app.component.css
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ ├── app.module.ts
│ ├── auth.service.spec.ts
│ ├── auth.service.ts
│ ├── greeting.service.spec.ts
│ ├── greeting.service.ts
│ ├── home
│ │ ├── home.component.css
│ │ ├── home.component.html
│ │ ├── home.component.spec.ts
│ │ └── home.component.ts
│ ├── httpInterceptor.service.ts
│ ├── request.model.ts
│ ├── signin
│ │ ├── signin.component.css
│ │ ├── signin.component.html
│ │ ├── signin.component.spec.ts
│ │ └── signin.component.ts
│ └── signup
│ │ ├── signup.component.css
│ │ ├── signup.component.html
│ │ ├── signup.component.spec.ts
│ │ └── signup.component.ts
│ └── index.html
├── angular-springboot-security
├── package.json
├── readme.rst
└── src
│ ├── app
│ ├── app-routing.module.ts
│ ├── app.component.html
│ ├── app.component.ts
│ ├── app.module.ts
│ ├── auth.service.ts
│ ├── home
│ │ ├── home.component.html
│ │ └── home.component.ts
│ ├── httpInterceptor.service.ts
│ └── login
│ │ ├── login.component.css
│ │ ├── login.component.html
│ │ └── login.component.ts
│ └── index.html
├── angular-star-rating
├── angular.json
├── package-lock.json
├── package.json
├── readme.rst
└── src
│ ├── app
│ ├── app.component.css
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ └── app.module.ts
│ └── index.html
├── angular-table-cell-conditional-color
├── package-lock.json
├── package.json
├── readme.rst
└── src
│ ├── app
│ ├── app-routing.module.ts
│ ├── app.component.html
│ ├── app.component.ts
│ └── app.module.ts
│ └── index.html
├── angular-ui
├── .browserslistrc
├── .gitattributes
├── .gitignore
├── README.md
├── angular.json
├── build.gradle
├── gradle.properties
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── karma.conf.js
├── package-lock.json
├── package.json
├── readme.rst
├── settings.gradle
├── src
│ ├── app
│ │ ├── app-routing.module.ts
│ │ ├── app.component.css
│ │ ├── app.component.html
│ │ ├── app.component.spec.ts
│ │ ├── app.component.ts
│ │ └── app.module.ts
│ ├── assets
│ │ └── .gitkeep
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── favicon.ico
│ ├── index.html
│ ├── main.ts
│ ├── polyfills.ts
│ ├── styles.css
│ └── test.ts
├── tsconfig.app.json
├── tsconfig.json
└── tsconfig.spec.json
├── angularjs-python
├── readme.rst
└── src
│ └── app
│ ├── app-routing.module.ts
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ ├── app.module.ts
│ ├── user-add
│ ├── user-add.component.html
│ ├── user-add.component.spec.ts
│ └── user-add.component.ts
│ ├── user-detail
│ ├── user-detail.component.html
│ ├── user-detail.component.spec.ts
│ └── user-detail.component.ts
│ ├── user-edit
│ ├── user-edit.component.html
│ ├── user-edit.component.spec.ts
│ └── user-edit.component.ts
│ ├── user-list
│ ├── user-list.component.html
│ ├── user-list.component.spec.ts
│ └── user-list.component.ts
│ ├── user.service.ts
│ └── user.ts
├── spring-boot-angular-security
├── package.json
├── readme.rst
└── src
│ ├── app
│ ├── app-routing.module.ts
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ ├── app.module.ts
│ ├── auth.service.spec.ts
│ ├── auth.service.ts
│ ├── home
│ │ ├── home.component.html
│ │ ├── home.component.spec.ts
│ │ └── home.component.ts
│ ├── httpInterceptor.service.ts
│ └── login
│ │ ├── login.component.css
│ │ ├── login.component.html
│ │ ├── login.component.spec.ts
│ │ └── login.component.ts
│ └── index.html
└── upload-angular
├── readme.rst
└── src
└── app
├── app-routing.module.ts
├── app.component.html
├── app.component.spec.ts
├── app.component.ts
├── app.module.ts
└── file.service.ts
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/README.md
--------------------------------------------------------------------------------
/angular-allow-only-numerics-digits-textbox-field/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-allow-only-numerics-digits-textbox-field/package-lock.json
--------------------------------------------------------------------------------
/angular-allow-only-numerics-digits-textbox-field/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-allow-only-numerics-digits-textbox-field/package.json
--------------------------------------------------------------------------------
/angular-allow-only-numerics-digits-textbox-field/readme.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-allow-only-numerics-digits-textbox-field/readme.rst
--------------------------------------------------------------------------------
/angular-allow-only-numerics-digits-textbox-field/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/angular-allow-only-numerics-digits-textbox-field/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-allow-only-numerics-digits-textbox-field/src/app/app.component.html
--------------------------------------------------------------------------------
/angular-allow-only-numerics-digits-textbox-field/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-allow-only-numerics-digits-textbox-field/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/angular-allow-only-numerics-digits-textbox-field/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-allow-only-numerics-digits-textbox-field/src/app/app.component.ts
--------------------------------------------------------------------------------
/angular-allow-only-numerics-digits-textbox-field/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-allow-only-numerics-digits-textbox-field/src/app/app.module.ts
--------------------------------------------------------------------------------
/angular-allow-only-numerics-digits-textbox-field/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-allow-only-numerics-digits-textbox-field/src/index.html
--------------------------------------------------------------------------------
/angular-autocomplete/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-autocomplete/package-lock.json
--------------------------------------------------------------------------------
/angular-autocomplete/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-autocomplete/package.json
--------------------------------------------------------------------------------
/angular-autocomplete/readme.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-autocomplete/readme.rst
--------------------------------------------------------------------------------
/angular-autocomplete/src/app/app-routing.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-autocomplete/src/app/app-routing.module.ts
--------------------------------------------------------------------------------
/angular-autocomplete/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/angular-autocomplete/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-autocomplete/src/app/app.component.html
--------------------------------------------------------------------------------
/angular-autocomplete/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-autocomplete/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/angular-autocomplete/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-autocomplete/src/app/app.component.ts
--------------------------------------------------------------------------------
/angular-autocomplete/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-autocomplete/src/app/app.module.ts
--------------------------------------------------------------------------------
/angular-autocomplete/src/app/search.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-autocomplete/src/app/search.service.spec.ts
--------------------------------------------------------------------------------
/angular-autocomplete/src/app/search.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-autocomplete/src/app/search.service.ts
--------------------------------------------------------------------------------
/angular-autocomplete/src/assets/data/results.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-autocomplete/src/assets/data/results.json
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/readme.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/readme.rst
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-13/src/app/app.component.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-13/src/app/app.component.css
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-13/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-13/src/app/app.component.html
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-13/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-13/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-13/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-13/src/app/app.component.ts
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-13/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-13/src/app/app.module.ts
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-13/src/app/product.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-13/src/app/product.service.ts
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-13/src/app/product.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-13/src/app/product.ts
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-13/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-13/src/index.html
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/package-lock.json
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/package.json
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/src/app/app.component.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/src/app/app.component.css
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/src/app/app.component.html
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/src/app/app.component.ts
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/src/app/app.module.ts
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/src/app/product.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/src/app/product.service.ts
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/src/app/product.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/src/app/product.ts
--------------------------------------------------------------------------------
/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-check-uncheck-individual-all-checkbox-table-rows/version-9/src/index.html
--------------------------------------------------------------------------------
/angular-custom-directives/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-custom-directives/package.json
--------------------------------------------------------------------------------
/angular-custom-directives/readme.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-custom-directives/readme.rst
--------------------------------------------------------------------------------
/angular-custom-directives/src/app/app-module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-custom-directives/src/app/app-module.ts
--------------------------------------------------------------------------------
/angular-custom-directives/src/app/app-routing-module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-custom-directives/src/app/app-routing-module.ts
--------------------------------------------------------------------------------
/angular-custom-directives/src/app/app.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-custom-directives/src/app/app.css
--------------------------------------------------------------------------------
/angular-custom-directives/src/app/app.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-custom-directives/src/app/app.html
--------------------------------------------------------------------------------
/angular-custom-directives/src/app/app.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-custom-directives/src/app/app.ts
--------------------------------------------------------------------------------
/angular-custom-directives/src/app/highlight.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-custom-directives/src/app/highlight.ts
--------------------------------------------------------------------------------
/angular-custom-directives/src/app/tooltip.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-custom-directives/src/app/tooltip.ts
--------------------------------------------------------------------------------
/angular-cut-copy-paste-prevention/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-cut-copy-paste-prevention/package.json
--------------------------------------------------------------------------------
/angular-cut-copy-paste-prevention/readme.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-cut-copy-paste-prevention/readme.rst
--------------------------------------------------------------------------------
/angular-cut-copy-paste-prevention/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-cut-copy-paste-prevention/src/app/app.component.html
--------------------------------------------------------------------------------
/angular-cut-copy-paste-prevention/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-cut-copy-paste-prevention/src/app/app.component.ts
--------------------------------------------------------------------------------
/angular-cut-copy-paste-prevention/src/app/app.config.server.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-cut-copy-paste-prevention/src/app/app.config.server.ts
--------------------------------------------------------------------------------
/angular-cut-copy-paste-prevention/src/app/app.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-cut-copy-paste-prevention/src/app/app.config.ts
--------------------------------------------------------------------------------
/angular-cut-copy-paste-prevention/src/app/app.routes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-cut-copy-paste-prevention/src/app/app.routes.ts
--------------------------------------------------------------------------------
/angular-cut-copy-paste-prevention/src/app/disable-cut-copy-paste.directive.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-cut-copy-paste-prevention/src/app/disable-cut-copy-paste.directive.ts
--------------------------------------------------------------------------------
/angular-cut-copy-paste-prevention/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-cut-copy-paste-prevention/src/index.html
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/readme.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/readme.rst
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-13/src/app/app.component.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-13/src/app/app.component.css
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-13/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-13/src/app/app.component.html
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-13/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-13/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-13/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-13/src/app/app.component.ts
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-13/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-13/src/app/app.module.ts
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-13/src/app/product.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-13/src/app/product.service.ts
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-13/src/app/product.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-13/src/app/product.ts
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-13/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-13/src/index.html
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-9/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-9/package-lock.json
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-9/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-9/package.json
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-9/src/app/app.component.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-9/src/app/app.component.css
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-9/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-9/src/app/app.component.html
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-9/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-9/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-9/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-9/src/app/app.component.ts
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-9/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-9/src/app/app.module.ts
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-9/src/app/product.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-9/src/app/product.service.ts
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-9/src/app/product.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-9/src/app/product.ts
--------------------------------------------------------------------------------
/angular-delete-multiple-rows-from-table/version-9/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-delete-multiple-rows-from-table/version-9/src/index.html
--------------------------------------------------------------------------------
/angular-dependent-dropdown/angular-17/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-dependent-dropdown/angular-17/package.json
--------------------------------------------------------------------------------
/angular-dependent-dropdown/angular-17/src/app/app.component.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-dependent-dropdown/angular-17/src/app/app.component.css
--------------------------------------------------------------------------------
/angular-dependent-dropdown/angular-17/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-dependent-dropdown/angular-17/src/app/app.component.html
--------------------------------------------------------------------------------
/angular-dependent-dropdown/angular-17/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-dependent-dropdown/angular-17/src/app/app.component.ts
--------------------------------------------------------------------------------
/angular-dependent-dropdown/angular-17/src/app/app.config.server.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-dependent-dropdown/angular-17/src/app/app.config.server.ts
--------------------------------------------------------------------------------
/angular-dependent-dropdown/angular-17/src/app/app.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-dependent-dropdown/angular-17/src/app/app.config.ts
--------------------------------------------------------------------------------
/angular-dependent-dropdown/angular-17/src/app/app.routes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-dependent-dropdown/angular-17/src/app/app.routes.ts
--------------------------------------------------------------------------------
/angular-dependent-dropdown/package_11.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-dependent-dropdown/package_11.json
--------------------------------------------------------------------------------
/angular-dependent-dropdown/package_8.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-dependent-dropdown/package_8.json
--------------------------------------------------------------------------------
/angular-dependent-dropdown/readme.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-dependent-dropdown/readme.rst
--------------------------------------------------------------------------------
/angular-dependent-dropdown/src/app/app-routing.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-dependent-dropdown/src/app/app-routing.module.ts
--------------------------------------------------------------------------------
/angular-dependent-dropdown/src/app/app.component.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-dependent-dropdown/src/app/app.component.css
--------------------------------------------------------------------------------
/angular-dependent-dropdown/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-dependent-dropdown/src/app/app.component.html
--------------------------------------------------------------------------------
/angular-dependent-dropdown/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-dependent-dropdown/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/angular-dependent-dropdown/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-dependent-dropdown/src/app/app.component.ts
--------------------------------------------------------------------------------
/angular-dependent-dropdown/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-dependent-dropdown/src/app/app.module.ts
--------------------------------------------------------------------------------
/angular-dependent-dropdown/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-dependent-dropdown/src/index.html
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/packaje.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/packaje.json
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/readme.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/readme.rst
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/src/app/app-module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/src/app/app-module.ts
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/src/app/app-routing-module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/src/app/app-routing-module.ts
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/src/app/app.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/src/app/app.html
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/src/app/app.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/src/app/app.ts
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/src/app/products/product-detail/product-detail.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/src/app/products/product-detail/product-detail.html
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/src/app/products/product-detail/product-detail.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/src/app/products/product-detail/product-detail.ts
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/src/app/products/products-module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/src/app/products/products-module.ts
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/src/app/products/products-routing-module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/src/app/products/products-routing-module.ts
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/src/app/products/products.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/src/app/products/products.html
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/src/app/products/products.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/src/app/products/products.ts
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/src/app/users/user-detail/user-detail.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/src/app/users/user-detail/user-detail.html
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/src/app/users/user-detail/user-detail.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/src/app/users/user-detail/user-detail.ts
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/src/app/users/users-module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/src/app/users/users-module.ts
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/src/app/users/users-routing-module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/src/app/users/users-routing-module.ts
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/src/app/users/users.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/src/app/users/users.html
--------------------------------------------------------------------------------
/angular-feature-module-lazy-loading/src/app/users/users.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-feature-module-lazy-loading/src/app/users/users.ts
--------------------------------------------------------------------------------
/angular-file-download/readme.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/readme.rst
--------------------------------------------------------------------------------
/angular-file-download/version-13/angular-file-download/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-13/angular-file-download/package-lock.json
--------------------------------------------------------------------------------
/angular-file-download/version-13/angular-file-download/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-13/angular-file-download/package.json
--------------------------------------------------------------------------------
/angular-file-download/version-13/angular-file-download/src/app/app-routing.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-13/angular-file-download/src/app/app-routing.module.ts
--------------------------------------------------------------------------------
/angular-file-download/version-13/angular-file-download/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/angular-file-download/version-13/angular-file-download/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-13/angular-file-download/src/app/app.component.html
--------------------------------------------------------------------------------
/angular-file-download/version-13/angular-file-download/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-13/angular-file-download/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/angular-file-download/version-13/angular-file-download/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-13/angular-file-download/src/app/app.component.ts
--------------------------------------------------------------------------------
/angular-file-download/version-13/angular-file-download/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-13/angular-file-download/src/app/app.module.ts
--------------------------------------------------------------------------------
/angular-file-download/version-13/angular-file-download/src/app/file.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-13/angular-file-download/src/app/file.service.spec.ts
--------------------------------------------------------------------------------
/angular-file-download/version-13/angular-file-download/src/app/file.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-13/angular-file-download/src/app/file.service.ts
--------------------------------------------------------------------------------
/angular-file-download/version-13/angular-file-download/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-13/angular-file-download/src/index.html
--------------------------------------------------------------------------------
/angular-file-download/version-15/angular-file-download/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-15/angular-file-download/package-lock.json
--------------------------------------------------------------------------------
/angular-file-download/version-15/angular-file-download/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-15/angular-file-download/package.json
--------------------------------------------------------------------------------
/angular-file-download/version-15/angular-file-download/src/app/app-routing.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-15/angular-file-download/src/app/app-routing.module.ts
--------------------------------------------------------------------------------
/angular-file-download/version-15/angular-file-download/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/angular-file-download/version-15/angular-file-download/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-15/angular-file-download/src/app/app.component.html
--------------------------------------------------------------------------------
/angular-file-download/version-15/angular-file-download/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-15/angular-file-download/src/app/app.component.ts
--------------------------------------------------------------------------------
/angular-file-download/version-15/angular-file-download/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-15/angular-file-download/src/app/app.module.ts
--------------------------------------------------------------------------------
/angular-file-download/version-15/angular-file-download/src/app/file.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-15/angular-file-download/src/app/file.service.ts
--------------------------------------------------------------------------------
/angular-file-download/version-15/angular-file-download/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-15/angular-file-download/src/index.html
--------------------------------------------------------------------------------
/angular-file-download/version-upto-12/angular-file-download/app/app-routing.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-upto-12/angular-file-download/app/app-routing.module.ts
--------------------------------------------------------------------------------
/angular-file-download/version-upto-12/angular-file-download/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/angular-file-download/version-upto-12/angular-file-download/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-upto-12/angular-file-download/app/app.component.html
--------------------------------------------------------------------------------
/angular-file-download/version-upto-12/angular-file-download/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-upto-12/angular-file-download/app/app.component.spec.ts
--------------------------------------------------------------------------------
/angular-file-download/version-upto-12/angular-file-download/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-upto-12/angular-file-download/app/app.component.ts
--------------------------------------------------------------------------------
/angular-file-download/version-upto-12/angular-file-download/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-upto-12/angular-file-download/app/app.module.ts
--------------------------------------------------------------------------------
/angular-file-download/version-upto-12/angular-file-download/app/file.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-file-download/version-upto-12/angular-file-download/app/file.service.ts
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/package.json
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/readme.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/readme.rst
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/app-routing.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/app-routing.module.ts
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/app.component.html
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/app.component.ts
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/app.module.ts
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/user-add/user-add.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/user-add/user-add.component.html
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/user-add/user-add.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/user-add/user-add.component.spec.ts
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/user-add/user-add.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/user-add/user-add.component.ts
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/user-detail/user-detail.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/user-detail/user-detail.component.html
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/user-detail/user-detail.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/user-detail/user-detail.component.spec.ts
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/user-detail/user-detail.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/user-detail/user-detail.component.ts
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/user-edit/user-edit.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/user-edit/user-edit.component.html
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/user-edit/user-edit.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/user-edit/user-edit.component.spec.ts
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/user-edit/user-edit.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/user-edit/user-edit.component.ts
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/user-list/user-list.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/user-list/user-list.component.html
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/user-list/user-list.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/user-list/user-list.component.spec.ts
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/user-list/user-list.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/user-list/user-list.component.ts
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/user.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/user.service.ts
--------------------------------------------------------------------------------
/angular-flask-rest-mongodb/src/app/user.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask-rest-mongodb/src/app/user.ts
--------------------------------------------------------------------------------
/angular-flask/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/package.json
--------------------------------------------------------------------------------
/angular-flask/readme.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/readme.rst
--------------------------------------------------------------------------------
/angular-flask/server.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/server.ts
--------------------------------------------------------------------------------
/angular-flask/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/src/app/app.component.html
--------------------------------------------------------------------------------
/angular-flask/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/src/app/app.component.ts
--------------------------------------------------------------------------------
/angular-flask/src/app/app.config.server.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/src/app/app.config.server.ts
--------------------------------------------------------------------------------
/angular-flask/src/app/app.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/src/app/app.config.ts
--------------------------------------------------------------------------------
/angular-flask/src/app/app.routes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/src/app/app.routes.ts
--------------------------------------------------------------------------------
/angular-flask/src/app/user-add/user-add.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/src/app/user-add/user-add.component.html
--------------------------------------------------------------------------------
/angular-flask/src/app/user-add/user-add.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/src/app/user-add/user-add.component.ts
--------------------------------------------------------------------------------
/angular-flask/src/app/user-detail/user-detail.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/src/app/user-detail/user-detail.component.html
--------------------------------------------------------------------------------
/angular-flask/src/app/user-detail/user-detail.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/src/app/user-detail/user-detail.component.ts
--------------------------------------------------------------------------------
/angular-flask/src/app/user-edit/user-edit.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/src/app/user-edit/user-edit.component.html
--------------------------------------------------------------------------------
/angular-flask/src/app/user-edit/user-edit.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/src/app/user-edit/user-edit.component.ts
--------------------------------------------------------------------------------
/angular-flask/src/app/user-list/user-list.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/src/app/user-list/user-list.component.html
--------------------------------------------------------------------------------
/angular-flask/src/app/user-list/user-list.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/src/app/user-list/user-list.component.ts
--------------------------------------------------------------------------------
/angular-flask/src/app/user.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/src/app/user.service.ts
--------------------------------------------------------------------------------
/angular-flask/src/app/user.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-flask/src/app/user.ts
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/readme.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/readme.rst
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-13/src/app/app.component.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-13/src/app/app.component.css
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-13/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-13/src/app/app.component.html
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-13/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-13/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-13/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-13/src/app/app.component.ts
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-13/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-13/src/app/app.module.ts
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-13/src/app/product.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-13/src/app/product.service.ts
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-13/src/app/product.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-13/src/app/product.ts
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-13/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-13/src/index.html
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-9/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-9/package-lock.json
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-9/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-9/package.json
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-9/src/app/app.component.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-9/src/app/app.component.css
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-9/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-9/src/app/app.component.html
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-9/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-9/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-9/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-9/src/app/app.component.ts
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-9/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-9/src/app/app.module.ts
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-9/src/app/product.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-9/src/app/product.service.ts
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-9/src/app/product.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-9/src/app/product.ts
--------------------------------------------------------------------------------
/angular-html-table-alternate-row-color/version-9/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-html-table-alternate-row-color/version-9/src/index.html
--------------------------------------------------------------------------------
/angular-image-upload-display/package-lock_11.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-image-upload-display/package-lock_11.json
--------------------------------------------------------------------------------
/angular-image-upload-display/package-lock_8.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-image-upload-display/package-lock_8.json
--------------------------------------------------------------------------------
/angular-image-upload-display/package_11.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-image-upload-display/package_11.json
--------------------------------------------------------------------------------
/angular-image-upload-display/package_8.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-image-upload-display/package_8.json
--------------------------------------------------------------------------------
/angular-image-upload-display/readme.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-image-upload-display/readme.rst
--------------------------------------------------------------------------------
/angular-image-upload-display/src/app/app-routing.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-image-upload-display/src/app/app-routing.module.ts
--------------------------------------------------------------------------------
/angular-image-upload-display/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/angular-image-upload-display/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-image-upload-display/src/app/app.component.html
--------------------------------------------------------------------------------
/angular-image-upload-display/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-image-upload-display/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/angular-image-upload-display/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-image-upload-display/src/app/app.component.ts
--------------------------------------------------------------------------------
/angular-image-upload-display/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-image-upload-display/src/app/app.module.ts
--------------------------------------------------------------------------------
/angular-image-upload-display/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-image-upload-display/src/index.html
--------------------------------------------------------------------------------
/angular-jest-unit-test/jest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-jest-unit-test/jest.config.ts
--------------------------------------------------------------------------------
/angular-jest-unit-test/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-jest-unit-test/package.json
--------------------------------------------------------------------------------
/angular-jest-unit-test/readme.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-jest-unit-test/readme.rst
--------------------------------------------------------------------------------
/angular-jest-unit-test/setup-jest.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-jest-unit-test/setup-jest.ts
--------------------------------------------------------------------------------
/angular-jest-unit-test/src/app/app-routing.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-jest-unit-test/src/app/app-routing.module.ts
--------------------------------------------------------------------------------
/angular-jest-unit-test/src/app/app.component.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
auth works!
2 | -------------------------------------------------------------------------------- /angular-okta-sso/src/app/auth/auth.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-okta-sso/src/app/auth/auth.component.spec.ts -------------------------------------------------------------------------------- /angular-okta-sso/src/app/auth/auth.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-okta-sso/src/app/auth/auth.component.ts -------------------------------------------------------------------------------- /angular-okta-sso/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-okta-sso/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /angular-okta-sso/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-okta-sso/src/environments/environment.ts -------------------------------------------------------------------------------- /angular-okta-sso/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-okta-sso/src/favicon.ico -------------------------------------------------------------------------------- /angular-okta-sso/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-okta-sso/src/index.html -------------------------------------------------------------------------------- /angular-okta-sso/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-okta-sso/src/main.ts -------------------------------------------------------------------------------- /angular-okta-sso/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-okta-sso/src/polyfills.ts -------------------------------------------------------------------------------- /angular-okta-sso/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-okta-sso/src/styles.css -------------------------------------------------------------------------------- /angular-okta-sso/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-okta-sso/src/test.ts -------------------------------------------------------------------------------- /angular-pagination/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-pagination/package.json -------------------------------------------------------------------------------- /angular-pagination/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-pagination/readme.md -------------------------------------------------------------------------------- /angular-pagination/src/app/app-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-pagination/src/app/app-module.ts -------------------------------------------------------------------------------- /angular-pagination/src/app/app-routing-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-pagination/src/app/app-routing-module.ts -------------------------------------------------------------------------------- /angular-pagination/src/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-pagination/src/app/app.css -------------------------------------------------------------------------------- /angular-pagination/src/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-pagination/src/app/app.html -------------------------------------------------------------------------------- /angular-pagination/src/app/app.module.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-pagination/src/app/app.module.server.ts -------------------------------------------------------------------------------- /angular-pagination/src/app/app.routes.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-pagination/src/app/app.routes.server.ts -------------------------------------------------------------------------------- /angular-pagination/src/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-pagination/src/app/app.ts -------------------------------------------------------------------------------- /angular-pagination/src/app/tutorial-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-pagination/src/app/tutorial-service.ts -------------------------------------------------------------------------------- /angular-pagination/src/app/tutorial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-pagination/src/app/tutorial.ts -------------------------------------------------------------------------------- /angular-parent-child-data-share/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-parent-child-data-share/package.json -------------------------------------------------------------------------------- /angular-parent-child-data-share/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-parent-child-data-share/readme.rst -------------------------------------------------------------------------------- /angular-parent-child-data-share/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-parent-child-data-share/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular-parent-child-data-share/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-parent-child-data-share/src/app/app.component.html -------------------------------------------------------------------------------- /angular-parent-child-data-share/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-parent-child-data-share/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-parent-child-data-share/src/app/app.module.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-parent-child-data-share/src/app/app.module.server.ts -------------------------------------------------------------------------------- /angular-parent-child-data-share/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-parent-child-data-share/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-parent-child-data-share/src/app/child/child.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-parent-child-data-share/src/app/child/child.component.html -------------------------------------------------------------------------------- /angular-parent-child-data-share/src/app/child/child.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-parent-child-data-share/src/app/child/child.component.ts -------------------------------------------------------------------------------- /angular-photo-gallery/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/angular.json -------------------------------------------------------------------------------- /angular-photo-gallery/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/package-lock.json -------------------------------------------------------------------------------- /angular-photo-gallery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/package.json -------------------------------------------------------------------------------- /angular-photo-gallery/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/readme.rst -------------------------------------------------------------------------------- /angular-photo-gallery/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular-photo-gallery/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/app/app.component.css -------------------------------------------------------------------------------- /angular-photo-gallery/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/app/app.component.html -------------------------------------------------------------------------------- /angular-photo-gallery/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-photo-gallery/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/image1.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/image10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/image10.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/image11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/image11.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/image12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/image12.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/image2.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/image3.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/image4.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/image5.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/image6.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/image7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/image7.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/image8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/image8.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/image9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/image9.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/thumbs/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/thumbs/image1.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/thumbs/image10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/thumbs/image10.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/thumbs/image11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/thumbs/image11.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/thumbs/image12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/thumbs/image12.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/thumbs/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/thumbs/image2.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/thumbs/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/thumbs/image3.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/thumbs/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/thumbs/image4.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/thumbs/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/thumbs/image5.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/thumbs/image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/thumbs/image6.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/thumbs/image7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/thumbs/image7.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/thumbs/image8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/thumbs/image8.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/assets/images/thumbs/image9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/assets/images/thumbs/image9.jpg -------------------------------------------------------------------------------- /angular-photo-gallery/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-photo-gallery/src/index.html -------------------------------------------------------------------------------- /angular-prevent-new-line-text-box/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-prevent-new-line-text-box/package-lock.json -------------------------------------------------------------------------------- /angular-prevent-new-line-text-box/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-prevent-new-line-text-box/package.json -------------------------------------------------------------------------------- /angular-prevent-new-line-text-box/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-prevent-new-line-text-box/readme.rst -------------------------------------------------------------------------------- /angular-prevent-new-line-text-box/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-prevent-new-line-text-box/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular-prevent-new-line-text-box/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-prevent-new-line-text-box/src/app/app.component.html -------------------------------------------------------------------------------- /angular-prevent-new-line-text-box/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-prevent-new-line-text-box/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-prevent-new-line-text-box/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-prevent-new-line-text-box/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-prevent-new-line-text-box/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-prevent-new-line-text-box/src/index.html -------------------------------------------------------------------------------- /angular-reactive-form-synchronous-asynchronous-validators/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive-form-synchronous-asynchronous-validators/readme.md -------------------------------------------------------------------------------- /angular-reactive-form-synchronous-asynchronous-validators/src/app/app-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive-form-synchronous-asynchronous-validators/src/app/app-module.ts -------------------------------------------------------------------------------- /angular-reactive-form-synchronous-asynchronous-validators/src/app/app-routing-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive-form-synchronous-asynchronous-validators/src/app/app-routing-module.ts -------------------------------------------------------------------------------- /angular-reactive-form-synchronous-asynchronous-validators/src/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive-form-synchronous-asynchronous-validators/src/app/app.html -------------------------------------------------------------------------------- /angular-reactive-form-synchronous-asynchronous-validators/src/app/app.module.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive-form-synchronous-asynchronous-validators/src/app/app.module.server.ts -------------------------------------------------------------------------------- /angular-reactive-form-synchronous-asynchronous-validators/src/app/app.routes.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive-form-synchronous-asynchronous-validators/src/app/app.routes.server.ts -------------------------------------------------------------------------------- /angular-reactive-form-synchronous-asynchronous-validators/src/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive-form-synchronous-asynchronous-validators/src/app/app.ts -------------------------------------------------------------------------------- /angular-reactive-form-synchronous-asynchronous-validators/src/app/email.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive-form-synchronous-asynchronous-validators/src/app/email.service.ts -------------------------------------------------------------------------------- /angular-reactive-forms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive-forms/package.json -------------------------------------------------------------------------------- /angular-reactive-forms/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive-forms/readme.rst -------------------------------------------------------------------------------- /angular-reactive-forms/src/app/app-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive-forms/src/app/app-module.ts -------------------------------------------------------------------------------- /angular-reactive-forms/src/app/app-routing-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive-forms/src/app/app-routing-module.ts -------------------------------------------------------------------------------- /angular-reactive-forms/src/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive-forms/src/app/app.html -------------------------------------------------------------------------------- /angular-reactive-forms/src/app/app.module.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive-forms/src/app/app.module.server.ts -------------------------------------------------------------------------------- /angular-reactive-forms/src/app/app.routes.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive-forms/src/app/app.routes.server.ts -------------------------------------------------------------------------------- /angular-reactive-forms/src/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive-forms/src/app/app.ts -------------------------------------------------------------------------------- /angular-reactive/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/readme.rst -------------------------------------------------------------------------------- /angular-reactive/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular-reactive/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/app.component.html -------------------------------------------------------------------------------- /angular-reactive/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-reactive/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-reactive/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-reactive/src/app/website-add/website-add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/website-add/website-add.component.html -------------------------------------------------------------------------------- /angular-reactive/src/app/website-add/website-add.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/website-add/website-add.component.spec.ts -------------------------------------------------------------------------------- /angular-reactive/src/app/website-add/website-add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/website-add/website-add.component.ts -------------------------------------------------------------------------------- /angular-reactive/src/app/website-detail/website-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/website-detail/website-detail.component.html -------------------------------------------------------------------------------- /angular-reactive/src/app/website-detail/website-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/website-detail/website-detail.component.spec.ts -------------------------------------------------------------------------------- /angular-reactive/src/app/website-detail/website-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/website-detail/website-detail.component.ts -------------------------------------------------------------------------------- /angular-reactive/src/app/website-edit/website-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/website-edit/website-edit.component.html -------------------------------------------------------------------------------- /angular-reactive/src/app/website-edit/website-edit.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/website-edit/website-edit.component.spec.ts -------------------------------------------------------------------------------- /angular-reactive/src/app/website-edit/website-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/website-edit/website-edit.component.ts -------------------------------------------------------------------------------- /angular-reactive/src/app/website-list/website-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/website-list/website-list.component.html -------------------------------------------------------------------------------- /angular-reactive/src/app/website-list/website-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/website-list/website-list.component.spec.ts -------------------------------------------------------------------------------- /angular-reactive/src/app/website-list/website-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/website-list/website-list.component.ts -------------------------------------------------------------------------------- /angular-reactive/src/app/website.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/website.service.ts -------------------------------------------------------------------------------- /angular-reactive/src/app/website.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reactive/src/app/website.ts -------------------------------------------------------------------------------- /angular-reusable-button-component/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reusable-button-component/package.json -------------------------------------------------------------------------------- /angular-reusable-button-component/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reusable-button-component/readme.rst -------------------------------------------------------------------------------- /angular-reusable-button-component/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reusable-button-component/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular-reusable-button-component/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reusable-button-component/src/app/app.component.html -------------------------------------------------------------------------------- /angular-reusable-button-component/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reusable-button-component/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-reusable-button-component/src/app/app.module.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reusable-button-component/src/app/app.module.server.ts -------------------------------------------------------------------------------- /angular-reusable-button-component/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reusable-button-component/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-reusable-button-component/src/app/button/button.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reusable-button-component/src/app/button/button.component.css -------------------------------------------------------------------------------- /angular-reusable-button-component/src/app/button/button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reusable-button-component/src/app/button/button.component.html -------------------------------------------------------------------------------- /angular-reusable-button-component/src/app/button/button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-reusable-button-component/src/app/button/button.component.ts -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/package-lock.json -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/package.json -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/readme.rst -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/app.component.html -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website-add/website-add.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website-add/website-add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/website-add/website-add.component.html -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website-add/website-add.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/website-add/website-add.component.spec.ts -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website-add/website-add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/website-add/website-add.component.ts -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website-detail/website-detail.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website-detail/website-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/website-detail/website-detail.component.html -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website-detail/website-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/website-detail/website-detail.component.spec.ts -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website-detail/website-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/website-detail/website-detail.component.ts -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website-edit/website-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website-edit/website-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/website-edit/website-edit.component.html -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website-edit/website-edit.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/website-edit/website-edit.component.spec.ts -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website-edit/website-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/website-edit/website-edit.component.ts -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website-list/website-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/website-list/website-list.component.css -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website-list/website-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/website-list/website-list.component.html -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website-list/website-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/website-list/website-list.component.spec.ts -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website-list/website-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/website-list/website-list.component.ts -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/website.model.ts -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/website.service.spec.ts -------------------------------------------------------------------------------- /angular-spring-boot-crud-app/src/app/website.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-crud-app/src/app/website.service.ts -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/package-lock.json -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/package.json -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/readme.rst -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/app.component.html -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/auth.service.spec.ts -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/auth.service.ts -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/greeting.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/greeting.service.spec.ts -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/greeting.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/greeting.service.ts -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/home/home.component.html -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/home/home.component.ts -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/httpInterceptor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/httpInterceptor.service.ts -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/request.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/request.model.ts -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/signin/signin.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/signin/signin.component.css -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/signin/signin.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/signin/signin.component.html -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/signin/signin.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/signin/signin.component.spec.ts -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/signin/signin.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/signin/signin.component.ts -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/signup/signup.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/signup/signup.component.css -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/signup/signup.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/signup/signup.component.html -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/signup/signup.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/signup/signup.component.spec.ts -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/app/signup/signup.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/app/signup/signup.component.ts -------------------------------------------------------------------------------- /angular-spring-boot-jwt-auth/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-spring-boot-jwt-auth/src/index.html -------------------------------------------------------------------------------- /angular-springboot-security/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-springboot-security/package.json -------------------------------------------------------------------------------- /angular-springboot-security/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-springboot-security/readme.rst -------------------------------------------------------------------------------- /angular-springboot-security/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-springboot-security/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular-springboot-security/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-springboot-security/src/app/app.component.html -------------------------------------------------------------------------------- /angular-springboot-security/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-springboot-security/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-springboot-security/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-springboot-security/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-springboot-security/src/app/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-springboot-security/src/app/auth.service.ts -------------------------------------------------------------------------------- /angular-springboot-security/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-springboot-security/src/app/home/home.component.html -------------------------------------------------------------------------------- /angular-springboot-security/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-springboot-security/src/app/home/home.component.ts -------------------------------------------------------------------------------- /angular-springboot-security/src/app/httpInterceptor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-springboot-security/src/app/httpInterceptor.service.ts -------------------------------------------------------------------------------- /angular-springboot-security/src/app/login/login.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-springboot-security/src/app/login/login.component.css -------------------------------------------------------------------------------- /angular-springboot-security/src/app/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-springboot-security/src/app/login/login.component.html -------------------------------------------------------------------------------- /angular-springboot-security/src/app/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-springboot-security/src/app/login/login.component.ts -------------------------------------------------------------------------------- /angular-springboot-security/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-springboot-security/src/index.html -------------------------------------------------------------------------------- /angular-star-rating/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-star-rating/angular.json -------------------------------------------------------------------------------- /angular-star-rating/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-star-rating/package-lock.json -------------------------------------------------------------------------------- /angular-star-rating/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-star-rating/package.json -------------------------------------------------------------------------------- /angular-star-rating/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-star-rating/readme.rst -------------------------------------------------------------------------------- /angular-star-rating/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-star-rating/src/app/app.component.css -------------------------------------------------------------------------------- /angular-star-rating/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-star-rating/src/app/app.component.html -------------------------------------------------------------------------------- /angular-star-rating/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-star-rating/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-star-rating/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-star-rating/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-star-rating/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-star-rating/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-star-rating/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-star-rating/src/index.html -------------------------------------------------------------------------------- /angular-table-cell-conditional-color/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-table-cell-conditional-color/package-lock.json -------------------------------------------------------------------------------- /angular-table-cell-conditional-color/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-table-cell-conditional-color/package.json -------------------------------------------------------------------------------- /angular-table-cell-conditional-color/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-table-cell-conditional-color/readme.rst -------------------------------------------------------------------------------- /angular-table-cell-conditional-color/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-table-cell-conditional-color/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular-table-cell-conditional-color/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-table-cell-conditional-color/src/app/app.component.html -------------------------------------------------------------------------------- /angular-table-cell-conditional-color/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-table-cell-conditional-color/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-table-cell-conditional-color/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-table-cell-conditional-color/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-table-cell-conditional-color/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-table-cell-conditional-color/src/index.html -------------------------------------------------------------------------------- /angular-ui/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/.browserslistrc -------------------------------------------------------------------------------- /angular-ui/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/.gitattributes -------------------------------------------------------------------------------- /angular-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/.gitignore -------------------------------------------------------------------------------- /angular-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/README.md -------------------------------------------------------------------------------- /angular-ui/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/angular.json -------------------------------------------------------------------------------- /angular-ui/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/build.gradle -------------------------------------------------------------------------------- /angular-ui/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/gradle.properties -------------------------------------------------------------------------------- /angular-ui/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /angular-ui/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /angular-ui/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/gradlew -------------------------------------------------------------------------------- /angular-ui/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/gradlew.bat -------------------------------------------------------------------------------- /angular-ui/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/karma.conf.js -------------------------------------------------------------------------------- /angular-ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/package-lock.json -------------------------------------------------------------------------------- /angular-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/package.json -------------------------------------------------------------------------------- /angular-ui/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/readme.rst -------------------------------------------------------------------------------- /angular-ui/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/settings.gradle -------------------------------------------------------------------------------- /angular-ui/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular-ui/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-ui/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/src/app/app.component.html -------------------------------------------------------------------------------- /angular-ui/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-ui/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-ui/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-ui/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-ui/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /angular-ui/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/src/environments/environment.ts -------------------------------------------------------------------------------- /angular-ui/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/src/favicon.ico -------------------------------------------------------------------------------- /angular-ui/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/src/index.html -------------------------------------------------------------------------------- /angular-ui/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/src/main.ts -------------------------------------------------------------------------------- /angular-ui/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/src/polyfills.ts -------------------------------------------------------------------------------- /angular-ui/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/src/styles.css -------------------------------------------------------------------------------- /angular-ui/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/src/test.ts -------------------------------------------------------------------------------- /angular-ui/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/tsconfig.app.json -------------------------------------------------------------------------------- /angular-ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/tsconfig.json -------------------------------------------------------------------------------- /angular-ui/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angular-ui/tsconfig.spec.json -------------------------------------------------------------------------------- /angularjs-python/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/readme.rst -------------------------------------------------------------------------------- /angularjs-python/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angularjs-python/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/app.component.html -------------------------------------------------------------------------------- /angularjs-python/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angularjs-python/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/app.component.ts -------------------------------------------------------------------------------- /angularjs-python/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/app.module.ts -------------------------------------------------------------------------------- /angularjs-python/src/app/user-add/user-add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/user-add/user-add.component.html -------------------------------------------------------------------------------- /angularjs-python/src/app/user-add/user-add.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/user-add/user-add.component.spec.ts -------------------------------------------------------------------------------- /angularjs-python/src/app/user-add/user-add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/user-add/user-add.component.ts -------------------------------------------------------------------------------- /angularjs-python/src/app/user-detail/user-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/user-detail/user-detail.component.html -------------------------------------------------------------------------------- /angularjs-python/src/app/user-detail/user-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/user-detail/user-detail.component.spec.ts -------------------------------------------------------------------------------- /angularjs-python/src/app/user-detail/user-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/user-detail/user-detail.component.ts -------------------------------------------------------------------------------- /angularjs-python/src/app/user-edit/user-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/user-edit/user-edit.component.html -------------------------------------------------------------------------------- /angularjs-python/src/app/user-edit/user-edit.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/user-edit/user-edit.component.spec.ts -------------------------------------------------------------------------------- /angularjs-python/src/app/user-edit/user-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/user-edit/user-edit.component.ts -------------------------------------------------------------------------------- /angularjs-python/src/app/user-list/user-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/user-list/user-list.component.html -------------------------------------------------------------------------------- /angularjs-python/src/app/user-list/user-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/user-list/user-list.component.spec.ts -------------------------------------------------------------------------------- /angularjs-python/src/app/user-list/user-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/user-list/user-list.component.ts -------------------------------------------------------------------------------- /angularjs-python/src/app/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/user.service.ts -------------------------------------------------------------------------------- /angularjs-python/src/app/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/angularjs-python/src/app/user.ts -------------------------------------------------------------------------------- /spring-boot-angular-security/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/package.json -------------------------------------------------------------------------------- /spring-boot-angular-security/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/readme.rst -------------------------------------------------------------------------------- /spring-boot-angular-security/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /spring-boot-angular-security/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/src/app/app.component.html -------------------------------------------------------------------------------- /spring-boot-angular-security/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /spring-boot-angular-security/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/src/app/app.component.ts -------------------------------------------------------------------------------- /spring-boot-angular-security/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/src/app/app.module.ts -------------------------------------------------------------------------------- /spring-boot-angular-security/src/app/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/src/app/auth.service.spec.ts -------------------------------------------------------------------------------- /spring-boot-angular-security/src/app/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/src/app/auth.service.ts -------------------------------------------------------------------------------- /spring-boot-angular-security/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/src/app/home/home.component.html -------------------------------------------------------------------------------- /spring-boot-angular-security/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /spring-boot-angular-security/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/src/app/home/home.component.ts -------------------------------------------------------------------------------- /spring-boot-angular-security/src/app/httpInterceptor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/src/app/httpInterceptor.service.ts -------------------------------------------------------------------------------- /spring-boot-angular-security/src/app/login/login.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/src/app/login/login.component.css -------------------------------------------------------------------------------- /spring-boot-angular-security/src/app/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/src/app/login/login.component.html -------------------------------------------------------------------------------- /spring-boot-angular-security/src/app/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/src/app/login/login.component.spec.ts -------------------------------------------------------------------------------- /spring-boot-angular-security/src/app/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/src/app/login/login.component.ts -------------------------------------------------------------------------------- /spring-boot-angular-security/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/spring-boot-angular-security/src/index.html -------------------------------------------------------------------------------- /upload-angular/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/upload-angular/readme.rst -------------------------------------------------------------------------------- /upload-angular/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/upload-angular/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /upload-angular/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/upload-angular/src/app/app.component.html -------------------------------------------------------------------------------- /upload-angular/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/upload-angular/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /upload-angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/upload-angular/src/app/app.component.ts -------------------------------------------------------------------------------- /upload-angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/upload-angular/src/app/app.module.ts -------------------------------------------------------------------------------- /upload-angular/src/app/file.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roytuts/angular/HEAD/upload-angular/src/app/file.service.ts --------------------------------------------------------------------------------