├── .gitignore ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── jest.config.js ├── jest.setup.ts ├── ng-package.json ├── package.json ├── public_api.ts ├── src ├── decorators │ ├── decorators.spec.ts │ └── decorators.ts └── until-destroy │ ├── README.md │ ├── internals.ts │ ├── ivy.ts │ ├── take-until-destroy.operator.ts │ ├── tests │ ├── take-until-destroy.operator.spec.ts │ ├── until-destroy.decorator.spec.ts │ └── utils.ts │ └── until-destroy.decorator.ts ├── test-bundle.js ├── tsconfig.json └── tsconfig.spec.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.json 2 | *.md -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/ng-package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/package.json -------------------------------------------------------------------------------- /public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/public_api.ts -------------------------------------------------------------------------------- /src/decorators/decorators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/src/decorators/decorators.spec.ts -------------------------------------------------------------------------------- /src/decorators/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/src/decorators/decorators.ts -------------------------------------------------------------------------------- /src/until-destroy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/src/until-destroy/README.md -------------------------------------------------------------------------------- /src/until-destroy/internals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/src/until-destroy/internals.ts -------------------------------------------------------------------------------- /src/until-destroy/ivy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/src/until-destroy/ivy.ts -------------------------------------------------------------------------------- /src/until-destroy/take-until-destroy.operator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/src/until-destroy/take-until-destroy.operator.ts -------------------------------------------------------------------------------- /src/until-destroy/tests/take-until-destroy.operator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/src/until-destroy/tests/take-until-destroy.operator.spec.ts -------------------------------------------------------------------------------- /src/until-destroy/tests/until-destroy.decorator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/src/until-destroy/tests/until-destroy.decorator.spec.ts -------------------------------------------------------------------------------- /src/until-destroy/tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/src/until-destroy/tests/utils.ts -------------------------------------------------------------------------------- /src/until-destroy/until-destroy.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/src/until-destroy/until-destroy.decorator.ts -------------------------------------------------------------------------------- /test-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/test-bundle.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brechtbilliet/ngxReactiveToolkit/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------