├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .travis.yml ├── README.md ├── angular.json ├── ng-event-options.iml ├── package.json ├── projects ├── e2e-ng-event-options │ ├── .eslintrc.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ └── test.ts │ └── tsconfig.app.json └── ng-event-options │ ├── .eslintrc.json │ ├── LICENSE.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── src │ ├── lib │ │ ├── enum │ │ │ ├── error-msg.enum.ts │ │ │ ├── event-option.enum.ts │ │ │ ├── global-event-target.enum.ts │ │ │ ├── native-event-option.enum.ts │ │ │ ├── operator-symbol.enum.ts │ │ │ └── option-symbol.enum.ts │ │ ├── helper │ │ │ ├── debounce-event.ts │ │ │ ├── get-bit-value.ts │ │ │ └── throttle-event.ts │ │ ├── ng-event-options.module.ts │ │ ├── service │ │ │ ├── dom-event-options-plugin.service.spec.ts │ │ │ └── dom-event-options-plugin.service.ts │ │ └── type │ │ │ └── event-options-object.ts │ ├── public-api.ts │ └── test.ts │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/angular.json -------------------------------------------------------------------------------- /ng-event-options.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/ng-event-options.iml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/package.json -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/e2e-ng-event-options/.eslintrc.json -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/e2e-ng-event-options/browserslist -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/e2e-ng-event-options/e2e/protractor.conf.js -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/e2e-ng-event-options/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/e2e-ng-event-options/e2e/src/app.po.ts -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/e2e-ng-event-options/e2e/tsconfig.json -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/e2e-ng-event-options/src/app/app.component.html -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/e2e-ng-event-options/src/app/app.component.ts -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/e2e-ng-event-options/src/app/app.module.ts -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/e2e-ng-event-options/src/environments/environment.ts -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/e2e-ng-event-options/src/favicon.ico -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/e2e-ng-event-options/src/index.html -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/e2e-ng-event-options/src/main.ts -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/e2e-ng-event-options/src/polyfills.ts -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/e2e-ng-event-options/src/styles.scss -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/e2e-ng-event-options/src/test.ts -------------------------------------------------------------------------------- /projects/e2e-ng-event-options/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/e2e-ng-event-options/tsconfig.app.json -------------------------------------------------------------------------------- /projects/ng-event-options/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/.eslintrc.json -------------------------------------------------------------------------------- /projects/ng-event-options/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/LICENSE.md -------------------------------------------------------------------------------- /projects/ng-event-options/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/karma.conf.js -------------------------------------------------------------------------------- /projects/ng-event-options/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/ng-package.json -------------------------------------------------------------------------------- /projects/ng-event-options/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/package.json -------------------------------------------------------------------------------- /projects/ng-event-options/src/lib/enum/error-msg.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/src/lib/enum/error-msg.enum.ts -------------------------------------------------------------------------------- /projects/ng-event-options/src/lib/enum/event-option.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/src/lib/enum/event-option.enum.ts -------------------------------------------------------------------------------- /projects/ng-event-options/src/lib/enum/global-event-target.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/src/lib/enum/global-event-target.enum.ts -------------------------------------------------------------------------------- /projects/ng-event-options/src/lib/enum/native-event-option.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/src/lib/enum/native-event-option.enum.ts -------------------------------------------------------------------------------- /projects/ng-event-options/src/lib/enum/operator-symbol.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/src/lib/enum/operator-symbol.enum.ts -------------------------------------------------------------------------------- /projects/ng-event-options/src/lib/enum/option-symbol.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/src/lib/enum/option-symbol.enum.ts -------------------------------------------------------------------------------- /projects/ng-event-options/src/lib/helper/debounce-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/src/lib/helper/debounce-event.ts -------------------------------------------------------------------------------- /projects/ng-event-options/src/lib/helper/get-bit-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/src/lib/helper/get-bit-value.ts -------------------------------------------------------------------------------- /projects/ng-event-options/src/lib/helper/throttle-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/src/lib/helper/throttle-event.ts -------------------------------------------------------------------------------- /projects/ng-event-options/src/lib/ng-event-options.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/src/lib/ng-event-options.module.ts -------------------------------------------------------------------------------- /projects/ng-event-options/src/lib/service/dom-event-options-plugin.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/src/lib/service/dom-event-options-plugin.service.spec.ts -------------------------------------------------------------------------------- /projects/ng-event-options/src/lib/service/dom-event-options-plugin.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/src/lib/service/dom-event-options-plugin.service.ts -------------------------------------------------------------------------------- /projects/ng-event-options/src/lib/type/event-options-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/src/lib/type/event-options-object.ts -------------------------------------------------------------------------------- /projects/ng-event-options/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/src/public-api.ts -------------------------------------------------------------------------------- /projects/ng-event-options/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/src/test.ts -------------------------------------------------------------------------------- /projects/ng-event-options/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/ng-event-options/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /projects/ng-event-options/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/projects/ng-event-options/tsconfig.spec.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PierreDuc/ng-event-options/HEAD/tsconfig.json --------------------------------------------------------------------------------