├── .browserslistrc ├── .gitignore ├── CHANGELOG.md ├── README.md ├── angular.json ├── docs ├── 3rdpartylicenses.txt ├── favicon.ico ├── index.html ├── main-E3LIUJFL.js ├── polyfills-EONH2QZO.js ├── prerendered-routes.json └── styles-5INURTSO.css ├── e2e ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.e2e.json ├── package.json ├── projects └── file-input-accessor │ ├── README.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── ng-package.prod.json │ ├── package.json │ ├── src │ ├── lib │ │ ├── file-input-accessor.module.ts │ │ ├── file-input-accessor.spec.ts │ │ ├── file-input-accessor.ts │ │ └── interfaces.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.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ └── components │ │ └── file-form │ │ ├── file-form.component.html │ │ ├── file-form.component.scss │ │ ├── file-form.component.spec.ts │ │ └── file-form.component.ts ├── assets │ └── .gitkeep ├── 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 /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/angular.json -------------------------------------------------------------------------------- /docs/3rdpartylicenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/docs/3rdpartylicenses.txt -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/main-E3LIUJFL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/docs/main-E3LIUJFL.js -------------------------------------------------------------------------------- /docs/polyfills-EONH2QZO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/docs/polyfills-EONH2QZO.js -------------------------------------------------------------------------------- /docs/prerendered-routes.json: -------------------------------------------------------------------------------- 1 | { 2 | "routes": {} 3 | } -------------------------------------------------------------------------------- /docs/styles-5INURTSO.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/package.json -------------------------------------------------------------------------------- /projects/file-input-accessor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/projects/file-input-accessor/README.md -------------------------------------------------------------------------------- /projects/file-input-accessor/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/projects/file-input-accessor/karma.conf.js -------------------------------------------------------------------------------- /projects/file-input-accessor/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/projects/file-input-accessor/ng-package.json -------------------------------------------------------------------------------- /projects/file-input-accessor/ng-package.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/projects/file-input-accessor/ng-package.prod.json -------------------------------------------------------------------------------- /projects/file-input-accessor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/projects/file-input-accessor/package.json -------------------------------------------------------------------------------- /projects/file-input-accessor/src/lib/file-input-accessor.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/projects/file-input-accessor/src/lib/file-input-accessor.module.ts -------------------------------------------------------------------------------- /projects/file-input-accessor/src/lib/file-input-accessor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/projects/file-input-accessor/src/lib/file-input-accessor.spec.ts -------------------------------------------------------------------------------- /projects/file-input-accessor/src/lib/file-input-accessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/projects/file-input-accessor/src/lib/file-input-accessor.ts -------------------------------------------------------------------------------- /projects/file-input-accessor/src/lib/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/projects/file-input-accessor/src/lib/interfaces.ts -------------------------------------------------------------------------------- /projects/file-input-accessor/src/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/projects/file-input-accessor/src/public_api.ts -------------------------------------------------------------------------------- /projects/file-input-accessor/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/projects/file-input-accessor/src/test.ts -------------------------------------------------------------------------------- /projects/file-input-accessor/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/projects/file-input-accessor/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/file-input-accessor/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/projects/file-input-accessor/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /projects/file-input-accessor/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/projects/file-input-accessor/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/file-input-accessor/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/projects/file-input-accessor/tslint.json -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/file-form/file-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/app/components/file-form/file-form.component.html -------------------------------------------------------------------------------- /src/app/components/file-form/file-form.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/app/components/file-form/file-form.component.scss -------------------------------------------------------------------------------- /src/app/components/file-form/file-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/app/components/file-form/file-form.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/file-form/file-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/app/components/file-form/file-form.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/jwelker110/file-input-accessor/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/src/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwelker110/file-input-accessor/HEAD/tslint.json --------------------------------------------------------------------------------