├── .browserslistrc ├── .commitlintrc.json ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .lintstagedrc.json ├── .npmrc ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── angular.json ├── commitlint.config.js ├── eslint.config.mjs ├── karma.conf.js ├── package.json ├── projects └── ngx-scroll-to-first-invalid-lib │ ├── ng-package.json │ ├── package.json │ ├── src │ ├── lib │ │ └── ngx-scroll-to-first-invalid.directive.ts │ └── public-api.ts │ ├── tsconfig.lib.json │ └── tsconfig.lib.prod.json ├── scripts └── deploy.sh ├── src ├── app │ ├── app.component.html │ ├── app.component.spec.ts │ └── app.component.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts └── styles.css ├── tsconfig.app.json ├── tsconfig.eslint.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.commitlintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@commitlint/config-conventional"] 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | coverage 3 | node_modules 4 | .angular/cache 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/angular.json -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'], 3 | }; 4 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/package.json -------------------------------------------------------------------------------- /projects/ngx-scroll-to-first-invalid-lib/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/projects/ngx-scroll-to-first-invalid-lib/ng-package.json -------------------------------------------------------------------------------- /projects/ngx-scroll-to-first-invalid-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/projects/ngx-scroll-to-first-invalid-lib/package.json -------------------------------------------------------------------------------- /projects/ngx-scroll-to-first-invalid-lib/src/lib/ngx-scroll-to-first-invalid.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/projects/ngx-scroll-to-first-invalid-lib/src/lib/ngx-scroll-to-first-invalid.directive.ts -------------------------------------------------------------------------------- /projects/ngx-scroll-to-first-invalid-lib/src/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/ngx-scroll-to-first-invalid.directive'; 2 | -------------------------------------------------------------------------------- /projects/ngx-scroll-to-first-invalid-lib/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/projects/ngx-scroll-to-first-invalid-lib/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/ngx-scroll-to-first-invalid-lib/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/projects/ngx-scroll-to-first-invalid-lib/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/scripts/deploy.sh -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/src/styles.css -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ismaestro/ngx-scroll-to-first-invalid/HEAD/tslint.json --------------------------------------------------------------------------------