├── .editorconfig ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── issue-template-enforcer.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── angular.json ├── package.json ├── pnpm-lock.yaml ├── projects ├── angular-confirmation-popover │ ├── .eslintrc.json │ ├── karma.conf.ts │ ├── ng-package.json │ ├── src │ │ ├── lib │ │ │ ├── confirmation-popover-options.provider.ts │ │ │ ├── confirmation-popover-window-options.provider.ts │ │ │ ├── confirmation-popover-window.component.html │ │ │ ├── confirmation-popover-window.component.scss │ │ │ ├── confirmation-popover-window.component.ts │ │ │ ├── confirmation-popover.directive.ts │ │ │ ├── confirmation-popover.module.ts │ │ │ └── focus.directive.ts │ │ ├── public-api.ts │ │ ├── test.ts │ │ └── test │ │ │ └── angular-confirmation-popover.spec.ts │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json └── demo │ ├── app │ ├── app.component.html │ ├── 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 ├── tea.yaml ├── tsconfig-compodoc.json ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/issue-template-enforcer.yml: -------------------------------------------------------------------------------- 1 | _extends: probot-settings 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | enable-pre-post-scripts=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/angular.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /projects/angular-confirmation-popover/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/angular-confirmation-popover/.eslintrc.json -------------------------------------------------------------------------------- /projects/angular-confirmation-popover/karma.conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/angular-confirmation-popover/karma.conf.ts -------------------------------------------------------------------------------- /projects/angular-confirmation-popover/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/angular-confirmation-popover/ng-package.json -------------------------------------------------------------------------------- /projects/angular-confirmation-popover/src/lib/confirmation-popover-options.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/angular-confirmation-popover/src/lib/confirmation-popover-options.provider.ts -------------------------------------------------------------------------------- /projects/angular-confirmation-popover/src/lib/confirmation-popover-window-options.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/angular-confirmation-popover/src/lib/confirmation-popover-window-options.provider.ts -------------------------------------------------------------------------------- /projects/angular-confirmation-popover/src/lib/confirmation-popover-window.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/angular-confirmation-popover/src/lib/confirmation-popover-window.component.html -------------------------------------------------------------------------------- /projects/angular-confirmation-popover/src/lib/confirmation-popover-window.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/angular-confirmation-popover/src/lib/confirmation-popover-window.component.scss -------------------------------------------------------------------------------- /projects/angular-confirmation-popover/src/lib/confirmation-popover-window.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/angular-confirmation-popover/src/lib/confirmation-popover-window.component.ts -------------------------------------------------------------------------------- /projects/angular-confirmation-popover/src/lib/confirmation-popover.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/angular-confirmation-popover/src/lib/confirmation-popover.directive.ts -------------------------------------------------------------------------------- /projects/angular-confirmation-popover/src/lib/confirmation-popover.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/angular-confirmation-popover/src/lib/confirmation-popover.module.ts -------------------------------------------------------------------------------- /projects/angular-confirmation-popover/src/lib/focus.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/angular-confirmation-popover/src/lib/focus.directive.ts -------------------------------------------------------------------------------- /projects/angular-confirmation-popover/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/angular-confirmation-popover/src/public-api.ts -------------------------------------------------------------------------------- /projects/angular-confirmation-popover/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/angular-confirmation-popover/src/test.ts -------------------------------------------------------------------------------- /projects/angular-confirmation-popover/src/test/angular-confirmation-popover.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/angular-confirmation-popover/src/test/angular-confirmation-popover.spec.ts -------------------------------------------------------------------------------- /projects/angular-confirmation-popover/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/angular-confirmation-popover/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/angular-confirmation-popover/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/angular-confirmation-popover/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /projects/angular-confirmation-popover/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/angular-confirmation-popover/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/demo/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/demo/app/app.component.html -------------------------------------------------------------------------------- /projects/demo/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/demo/app/app.component.ts -------------------------------------------------------------------------------- /projects/demo/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/demo/app/app.module.ts -------------------------------------------------------------------------------- /projects/demo/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/demo/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /projects/demo/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/demo/environments/environment.ts -------------------------------------------------------------------------------- /projects/demo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/demo/favicon.ico -------------------------------------------------------------------------------- /projects/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/demo/index.html -------------------------------------------------------------------------------- /projects/demo/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/demo/main.ts -------------------------------------------------------------------------------- /projects/demo/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/demo/polyfills.ts -------------------------------------------------------------------------------- /projects/demo/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/demo/styles.scss -------------------------------------------------------------------------------- /projects/demo/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/projects/demo/test.ts -------------------------------------------------------------------------------- /tea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/tea.yaml -------------------------------------------------------------------------------- /tsconfig-compodoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/tsconfig-compodoc.json -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-confirmation-popover/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------