diff --git a/libs/template/CHANGELOG.md b/libs/template/CHANGELOG.md index 13065c508..2770e58ce 100644 --- a/libs/template/CHANGELOG.md +++ b/libs/template/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [19.1.1](https://github.com/rx-angular/rx-angular/compare/template@19.1.0...template@19.1.1) (2024-12-24) + + +### Bug Fixes + +* **template:** expose virtual-view config tokens ([9817f4b](https://github.com/rx-angular/rx-angular/commit/9817f4b8d9817bc98c45f5329a5a4b00f3b51633)) + + + # [19.1.0](https://github.com/rx-angular/rx-angular/compare/template@19.0.0...template@19.1.0) (2024-12-23) diff --git a/libs/template/package.json b/libs/template/package.json index 3fa4c2c31..e12bde073 100644 --- a/libs/template/package.json +++ b/libs/template/package.json @@ -1,6 +1,6 @@ { "name": "@rx-angular/template", - "version": "19.1.0", + "version": "19.1.1", "description": "**Fully** Reactive Component Template Rendering in Angular. @rx-angular/template aims to be a reflection of Angular's built in renderings just reactive.", "publishConfig": { "access": "public" diff --git a/libs/template/virtual-view/src/index.ts b/libs/template/virtual-view/src/index.ts index 11bfc12b9..047474b5c 100644 --- a/libs/template/virtual-view/src/index.ts +++ b/libs/template/virtual-view/src/index.ts @@ -1,3 +1,7 @@ +export { + provideVirtualViewConfig, + RxVirtualViewConfig, +} from './lib/virtual-view.config'; export { RxVirtualView } from './lib/virtual-view.directive'; export { RxVirtualViewContent } from './lib/virtual-view-content.directive'; export { RxVirtualViewObserver } from './lib/virtual-view-observer.directive';