├── .circleci └── config.yml ├── .editorconfig ├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── angular.json ├── demo ├── browserslist ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.ts │ │ └── app.module.ts │ ├── assets │ │ ├── diagonal-stripes-bg.png │ │ └── github-circle.svg │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ └── styles.scss ├── tsconfig.app.json └── tslint.json ├── lib ├── karma.conf.js ├── ng-package.json ├── package.json ├── public_api.ts ├── src │ ├── index.ts │ ├── stickybits.directive.spec.ts │ ├── stickybits.directive.ts │ └── stickybits.module.ts ├── test.ts ├── tsconfig.lib.json ├── tsconfig.spec.json └── tslint.json ├── package.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/dist -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/angular.json -------------------------------------------------------------------------------- /demo/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/demo/browserslist -------------------------------------------------------------------------------- /demo/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/demo/src/app/app.component.html -------------------------------------------------------------------------------- /demo/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/demo/src/app/app.component.scss -------------------------------------------------------------------------------- /demo/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/demo/src/app/app.component.ts -------------------------------------------------------------------------------- /demo/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/demo/src/app/app.module.ts -------------------------------------------------------------------------------- /demo/src/assets/diagonal-stripes-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/demo/src/assets/diagonal-stripes-bg.png -------------------------------------------------------------------------------- /demo/src/assets/github-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/demo/src/assets/github-circle.svg -------------------------------------------------------------------------------- /demo/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /demo/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/demo/src/environments/environment.ts -------------------------------------------------------------------------------- /demo/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/demo/src/favicon.ico -------------------------------------------------------------------------------- /demo/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/demo/src/index.html -------------------------------------------------------------------------------- /demo/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/demo/src/main.ts -------------------------------------------------------------------------------- /demo/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/demo/src/polyfills.ts -------------------------------------------------------------------------------- /demo/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/demo/src/styles.scss -------------------------------------------------------------------------------- /demo/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/demo/tsconfig.app.json -------------------------------------------------------------------------------- /demo/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/demo/tslint.json -------------------------------------------------------------------------------- /lib/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/lib/karma.conf.js -------------------------------------------------------------------------------- /lib/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/lib/ng-package.json -------------------------------------------------------------------------------- /lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/lib/package.json -------------------------------------------------------------------------------- /lib/public_api.ts: -------------------------------------------------------------------------------- 1 | export * from './src/index'; 2 | -------------------------------------------------------------------------------- /lib/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/lib/src/index.ts -------------------------------------------------------------------------------- /lib/src/stickybits.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/lib/src/stickybits.directive.spec.ts -------------------------------------------------------------------------------- /lib/src/stickybits.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/lib/src/stickybits.directive.ts -------------------------------------------------------------------------------- /lib/src/stickybits.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/lib/src/stickybits.module.ts -------------------------------------------------------------------------------- /lib/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/lib/test.ts -------------------------------------------------------------------------------- /lib/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/lib/tsconfig.lib.json -------------------------------------------------------------------------------- /lib/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/lib/tsconfig.spec.json -------------------------------------------------------------------------------- /lib/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/lib/tslint.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcere/ngx-stickybits/HEAD/yarn.lock --------------------------------------------------------------------------------