├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── browserslist ├── demo.gif ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package.json ├── projects └── ngx-overflow-shadow │ ├── README.md │ ├── demo.gif │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── src │ ├── lib │ │ ├── ngx-overflow-shadow.directive.ts │ │ └── ngx-overflow-shadow.module.ts │ ├── public-api.ts │ └── test.ts │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ └── tslint.json ├── src ├── app │ ├── app.component.html │ ├── app.component.less │ ├── 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.less └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/browserslist -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/demo.gif -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/package.json -------------------------------------------------------------------------------- /projects/ngx-overflow-shadow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/projects/ngx-overflow-shadow/README.md -------------------------------------------------------------------------------- /projects/ngx-overflow-shadow/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/projects/ngx-overflow-shadow/demo.gif -------------------------------------------------------------------------------- /projects/ngx-overflow-shadow/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/projects/ngx-overflow-shadow/karma.conf.js -------------------------------------------------------------------------------- /projects/ngx-overflow-shadow/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/projects/ngx-overflow-shadow/ng-package.json -------------------------------------------------------------------------------- /projects/ngx-overflow-shadow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/projects/ngx-overflow-shadow/package.json -------------------------------------------------------------------------------- /projects/ngx-overflow-shadow/src/lib/ngx-overflow-shadow.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/projects/ngx-overflow-shadow/src/lib/ngx-overflow-shadow.directive.ts -------------------------------------------------------------------------------- /projects/ngx-overflow-shadow/src/lib/ngx-overflow-shadow.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/projects/ngx-overflow-shadow/src/lib/ngx-overflow-shadow.module.ts -------------------------------------------------------------------------------- /projects/ngx-overflow-shadow/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/projects/ngx-overflow-shadow/src/public-api.ts -------------------------------------------------------------------------------- /projects/ngx-overflow-shadow/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/projects/ngx-overflow-shadow/src/test.ts -------------------------------------------------------------------------------- /projects/ngx-overflow-shadow/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/projects/ngx-overflow-shadow/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/ngx-overflow-shadow/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/projects/ngx-overflow-shadow/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /projects/ngx-overflow-shadow/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/projects/ngx-overflow-shadow/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/ngx-overflow-shadow/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/projects/ngx-overflow-shadow/tslint.json -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/src/app/app.component.less -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/src/app/app.module.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/maormoshe/OverflowShadowLibrary/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/src/styles.less -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maormoshe/OverflowShadowLibrary/HEAD/tslint.json --------------------------------------------------------------------------------