gitextract_ts7rq1j9/ ├── .editorconfig ├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── angular.json ├── demo/ │ ├── angular12/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── angular.json │ │ ├── app/ │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── examples/ │ │ │ ├── basic/ │ │ │ │ ├── basic.component.html │ │ │ │ ├── basic.component.scss │ │ │ │ └── basic.component.ts │ │ │ ├── dynamic-changes/ │ │ │ │ ├── dynamic-changes.component.html │ │ │ │ ├── dynamic-changes.component.scss │ │ │ │ └── dynamic-changes.component.ts │ │ │ ├── dynamic-ng-for/ │ │ │ │ ├── dynamic-ng-for.component.html │ │ │ │ ├── dynamic-ng-for.component.scss │ │ │ │ └── dynamic-ng-for.component.ts │ │ │ ├── scrolloverflow/ │ │ │ │ ├── scrolloverflow.component.html │ │ │ │ ├── scrolloverflow.component.scss │ │ │ │ └── scrolloverflow.component.ts │ │ │ ├── type-definitions/ │ │ │ │ ├── type.component.html │ │ │ │ ├── type.component.scss │ │ │ │ └── type.component.ts │ │ │ └── using-directive/ │ │ │ ├── using-directive.html │ │ │ ├── using-directive.scss │ │ │ └── using-directive.ts │ │ ├── environments/ │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── package.json │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── angular13/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── angular.json │ │ ├── app/ │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── examples/ │ │ │ ├── basic/ │ │ │ │ ├── basic.component.html │ │ │ │ ├── basic.component.scss │ │ │ │ └── basic.component.ts │ │ │ ├── dynamic-changes/ │ │ │ │ ├── dynamic-changes.component.html │ │ │ │ ├── dynamic-changes.component.scss │ │ │ │ └── dynamic-changes.component.ts │ │ │ ├── dynamic-ng-for/ │ │ │ │ ├── dynamic-ng-for.component.html │ │ │ │ ├── dynamic-ng-for.component.scss │ │ │ │ └── dynamic-ng-for.component.ts │ │ │ ├── scrolloverflow/ │ │ │ │ ├── scrolloverflow.component.html │ │ │ │ ├── scrolloverflow.component.scss │ │ │ │ └── scrolloverflow.component.ts │ │ │ ├── type-definitions/ │ │ │ │ ├── type.component.html │ │ │ │ ├── type.component.scss │ │ │ │ └── type.component.ts │ │ │ └── using-directive/ │ │ │ ├── using-directive.html │ │ │ ├── using-directive.scss │ │ │ └── using-directive.ts │ │ ├── environments/ │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── package.json │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── angular14/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── angular.json │ │ ├── app/ │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── examples/ │ │ │ ├── basic/ │ │ │ │ ├── basic.component.html │ │ │ │ ├── basic.component.scss │ │ │ │ └── basic.component.ts │ │ │ ├── dynamic-changes/ │ │ │ │ ├── dynamic-changes.component.html │ │ │ │ ├── dynamic-changes.component.scss │ │ │ │ └── dynamic-changes.component.ts │ │ │ ├── dynamic-ng-for/ │ │ │ │ ├── dynamic-ng-for.component.html │ │ │ │ ├── dynamic-ng-for.component.scss │ │ │ │ └── dynamic-ng-for.component.ts │ │ │ ├── scrolloverflow/ │ │ │ │ ├── scrolloverflow.component.html │ │ │ │ ├── scrolloverflow.component.scss │ │ │ │ └── scrolloverflow.component.ts │ │ │ ├── type-definitions/ │ │ │ │ ├── type.component.html │ │ │ │ ├── type.component.scss │ │ │ │ └── type.component.ts │ │ │ └── using-directive/ │ │ │ ├── using-directive.html │ │ │ ├── using-directive.scss │ │ │ └── using-directive.ts │ │ ├── environments/ │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── package.json │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── angular15/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── angular.json │ │ ├── app/ │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── examples/ │ │ │ ├── basic/ │ │ │ │ ├── basic.component.html │ │ │ │ ├── basic.component.scss │ │ │ │ └── basic.component.ts │ │ │ ├── dynamic-changes/ │ │ │ │ ├── dynamic-changes.component.html │ │ │ │ ├── dynamic-changes.component.scss │ │ │ │ └── dynamic-changes.component.ts │ │ │ ├── dynamic-ng-for/ │ │ │ │ ├── dynamic-ng-for.component.html │ │ │ │ ├── dynamic-ng-for.component.scss │ │ │ │ └── dynamic-ng-for.component.ts │ │ │ ├── scrolloverflow/ │ │ │ │ ├── scrolloverflow.component.html │ │ │ │ ├── scrolloverflow.component.scss │ │ │ │ └── scrolloverflow.component.ts │ │ │ ├── type-definitions/ │ │ │ │ ├── type.component.html │ │ │ │ ├── type.component.scss │ │ │ │ └── type.component.ts │ │ │ └── using-directive/ │ │ │ ├── using-directive.html │ │ │ ├── using-directive.scss │ │ │ └── using-directive.ts │ │ ├── environments/ │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── package.json │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── angular16/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── angular.json │ │ ├── app/ │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── examples/ │ │ │ ├── basic/ │ │ │ │ ├── basic.component.html │ │ │ │ ├── basic.component.scss │ │ │ │ └── basic.component.ts │ │ │ ├── dynamic-changes/ │ │ │ │ ├── dynamic-changes.component.html │ │ │ │ ├── dynamic-changes.component.scss │ │ │ │ └── dynamic-changes.component.ts │ │ │ ├── dynamic-ng-for/ │ │ │ │ ├── dynamic-ng-for.component.html │ │ │ │ ├── dynamic-ng-for.component.scss │ │ │ │ └── dynamic-ng-for.component.ts │ │ │ ├── scrolloverflow/ │ │ │ │ ├── scrolloverflow.component.html │ │ │ │ ├── scrolloverflow.component.scss │ │ │ │ └── scrolloverflow.component.ts │ │ │ ├── type-definitions/ │ │ │ │ ├── type.component.html │ │ │ │ ├── type.component.scss │ │ │ │ └── type.component.ts │ │ │ └── using-directive/ │ │ │ ├── using-directive.html │ │ │ ├── using-directive.scss │ │ │ └── using-directive.ts │ │ ├── environments/ │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── package.json │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── angular17/ │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── angular.json │ │ ├── app/ │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── examples/ │ │ │ ├── basic/ │ │ │ │ ├── basic.component.html │ │ │ │ ├── basic.component.scss │ │ │ │ └── basic.component.ts │ │ │ ├── dynamic-changes/ │ │ │ │ ├── dynamic-changes.component.html │ │ │ │ ├── dynamic-changes.component.scss │ │ │ │ └── dynamic-changes.component.ts │ │ │ ├── dynamic-ng-for/ │ │ │ │ ├── dynamic-ng-for.component.html │ │ │ │ ├── dynamic-ng-for.component.scss │ │ │ │ └── dynamic-ng-for.component.ts │ │ │ ├── scrolloverflow/ │ │ │ │ ├── scrolloverflow.component.html │ │ │ │ ├── scrolloverflow.component.scss │ │ │ │ └── scrolloverflow.component.ts │ │ │ ├── type-definitions/ │ │ │ │ ├── type.component.html │ │ │ │ ├── type.component.scss │ │ │ │ └── type.component.ts │ │ │ └── using-directive/ │ │ │ ├── using-directive.html │ │ │ ├── using-directive.scss │ │ │ └── using-directive.ts │ │ ├── environments/ │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── package.json │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── angular18/ │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── angular.json │ │ ├── app/ │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── examples/ │ │ │ ├── basic/ │ │ │ │ ├── basic.component.html │ │ │ │ ├── basic.component.scss │ │ │ │ └── basic.component.ts │ │ │ ├── dynamic-changes/ │ │ │ │ ├── dynamic-changes.component.html │ │ │ │ ├── dynamic-changes.component.scss │ │ │ │ └── dynamic-changes.component.ts │ │ │ ├── dynamic-ng-for/ │ │ │ │ ├── dynamic-ng-for.component.html │ │ │ │ ├── dynamic-ng-for.component.scss │ │ │ │ └── dynamic-ng-for.component.ts │ │ │ ├── scrolloverflow/ │ │ │ │ ├── scrolloverflow.component.html │ │ │ │ ├── scrolloverflow.component.scss │ │ │ │ └── scrolloverflow.component.ts │ │ │ ├── type-definitions/ │ │ │ │ ├── type.component.html │ │ │ │ ├── type.component.scss │ │ │ │ └── type.component.ts │ │ │ └── using-directive/ │ │ │ ├── using-directive.html │ │ │ ├── using-directive.scss │ │ │ └── using-directive.ts │ │ ├── environments/ │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── package.json │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tslint.json │ └── angular19/ │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── app/ │ │ ├── app-routing.module.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── examples/ │ │ ├── basic/ │ │ │ ├── basic.component.html │ │ │ ├── basic.component.scss │ │ │ └── basic.component.ts │ │ ├── dynamic-changes/ │ │ │ ├── dynamic-changes.component.html │ │ │ ├── dynamic-changes.component.scss │ │ │ └── dynamic-changes.component.ts │ │ ├── dynamic-ng-for/ │ │ │ ├── dynamic-ng-for.component.html │ │ │ ├── dynamic-ng-for.component.scss │ │ │ └── dynamic-ng-for.component.ts │ │ ├── scrolloverflow/ │ │ │ ├── scrolloverflow.component.html │ │ │ ├── scrolloverflow.component.scss │ │ │ └── scrolloverflow.component.ts │ │ ├── type-definitions/ │ │ │ ├── type.component.html │ │ │ ├── type.component.scss │ │ │ └── type.component.ts │ │ └── using-directive/ │ │ ├── using-directive.html │ │ ├── using-directive.scss │ │ └── using-directive.ts │ ├── environments/ │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── index.html │ ├── main.ts │ ├── package.json │ ├── polyfills.ts │ ├── styles.scss │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tslint.json ├── dist/ │ └── @fullpage/ │ └── angular-fullpage/ │ ├── README.md │ ├── bundles/ │ │ └── fullpage-angular-fullpage.umd.js │ ├── esm2015/ │ │ ├── fullpage-angular-fullpage.js │ │ ├── lib/ │ │ │ ├── angular-fullpage.module.js │ │ │ ├── fullpage.directive.js │ │ │ └── fullpage.interface.js │ │ └── public_api.js │ ├── fesm2015/ │ │ └── fullpage-angular-fullpage.js │ ├── fullpage-angular-fullpage.d.ts │ ├── lib/ │ │ ├── angular-fullpage.module.d.ts │ │ ├── fullpage.directive.d.ts │ │ └── fullpage.interface.d.ts │ ├── package.json │ └── public_api.d.ts ├── package.json ├── src/ │ ├── angular-fullpage/ │ │ ├── lib/ │ │ │ ├── angular-fullpage.module.ts │ │ │ ├── fullpage.directive.ts │ │ │ └── fullpage.interface.ts │ │ └── public_api.ts │ ├── ng-package.json │ ├── package.json │ ├── tsconfig.lib.json │ └── tslint.json ├── tsconfig.json └── tslint.json