gitextract_9dohus3n/ ├── .editorconfig ├── .github/ │ └── workflows/ │ ├── ci.yml │ └── npm-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── angular.json ├── package.json ├── playground/ │ ├── .browserslistrc │ ├── .editorconfig │ ├── angular.json │ ├── package.json │ ├── src/ │ │ ├── app/ │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── styles.scss │ ├── tsconfig.app.json │ └── tsconfig.json ├── projects/ │ └── angular-resize-event/ │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── src/ │ │ ├── lib/ │ │ │ ├── angular-resize-event.module.ts │ │ │ ├── resized.directive.ts │ │ │ └── resized.event.ts │ │ └── public-api.ts │ ├── tsconfig.lib.json │ └── tsconfig.lib.prod.json └── tsconfig.json