├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── angular.json ├── docs ├── 3rdpartylicenses.txt ├── 404.html ├── favicon.ico ├── index.html ├── main.a55a9b0942ff9fec8355.js ├── polyfills.2f4a59095805af02bd79.js ├── runtime.a66f828dca56eeb90e02.js └── styles.f44762b347afce02ecd3.css ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.e2e.json ├── package.json ├── projects └── password-strength-meter │ ├── README.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── ng-package.prod.json │ ├── package.json │ ├── src │ ├── lib │ │ ├── password-strength-meter.component.html │ │ ├── password-strength-meter.component.scss │ │ ├── password-strength-meter.component.spec.ts │ │ ├── password-strength-meter.component.ts │ │ ├── password-strength-meter.module.ts │ │ ├── password-strength-meter.service.spec.ts │ │ └── password-strength-meter.service.ts │ ├── public_api.ts │ └── test.ts │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── tslint.json ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ └── user.model.ts ├── assets │ └── .gitkeep ├── browserslist ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── tslint.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/angular.json -------------------------------------------------------------------------------- /docs/3rdpartylicenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/docs/3rdpartylicenses.txt -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/main.a55a9b0942ff9fec8355.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/docs/main.a55a9b0942ff9fec8355.js -------------------------------------------------------------------------------- /docs/polyfills.2f4a59095805af02bd79.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/docs/polyfills.2f4a59095805af02bd79.js -------------------------------------------------------------------------------- /docs/runtime.a66f828dca56eeb90e02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/docs/runtime.a66f828dca56eeb90e02.js -------------------------------------------------------------------------------- /docs/styles.f44762b347afce02ecd3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/docs/styles.f44762b347afce02ecd3.css -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/package.json -------------------------------------------------------------------------------- /projects/password-strength-meter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/projects/password-strength-meter/README.md -------------------------------------------------------------------------------- /projects/password-strength-meter/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/projects/password-strength-meter/karma.conf.js -------------------------------------------------------------------------------- /projects/password-strength-meter/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/projects/password-strength-meter/ng-package.json -------------------------------------------------------------------------------- /projects/password-strength-meter/ng-package.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/projects/password-strength-meter/ng-package.prod.json -------------------------------------------------------------------------------- /projects/password-strength-meter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/projects/password-strength-meter/package.json -------------------------------------------------------------------------------- /projects/password-strength-meter/src/lib/password-strength-meter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/projects/password-strength-meter/src/lib/password-strength-meter.component.html -------------------------------------------------------------------------------- /projects/password-strength-meter/src/lib/password-strength-meter.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/projects/password-strength-meter/src/lib/password-strength-meter.component.scss -------------------------------------------------------------------------------- /projects/password-strength-meter/src/lib/password-strength-meter.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/projects/password-strength-meter/src/lib/password-strength-meter.component.spec.ts -------------------------------------------------------------------------------- /projects/password-strength-meter/src/lib/password-strength-meter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/projects/password-strength-meter/src/lib/password-strength-meter.component.ts -------------------------------------------------------------------------------- /projects/password-strength-meter/src/lib/password-strength-meter.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/projects/password-strength-meter/src/lib/password-strength-meter.module.ts -------------------------------------------------------------------------------- /projects/password-strength-meter/src/lib/password-strength-meter.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/projects/password-strength-meter/src/lib/password-strength-meter.service.spec.ts -------------------------------------------------------------------------------- /projects/password-strength-meter/src/lib/password-strength-meter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/projects/password-strength-meter/src/lib/password-strength-meter.service.ts -------------------------------------------------------------------------------- /projects/password-strength-meter/src/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/projects/password-strength-meter/src/public_api.ts -------------------------------------------------------------------------------- /projects/password-strength-meter/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/projects/password-strength-meter/src/test.ts -------------------------------------------------------------------------------- /projects/password-strength-meter/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/projects/password-strength-meter/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/password-strength-meter/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/projects/password-strength-meter/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/password-strength-meter/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/projects/password-strength-meter/tslint.json -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/app/user.model.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/browserslist -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/src/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-git1/password-strenth-metor/HEAD/tslint.json --------------------------------------------------------------------------------