-
-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] IoEventContextToken
is not exported
#503
Comments
@gund I found a workaround by using <ng-template
[ngComponentOutlet]="PointingScreenItemComponent"
[ndcDynamicInputs]="{item: item}"
[ndcDynamicOutputs]="{selected: onItemSelected.bind(this)}"
*ngFor="let item of items"></ng-template> Since function context binding works in the template, isn't |
@daweedm the But it's a good catch, the |
## [10.6.2](v10.6.1...v10.6.2) (2023-03-15) ### Bug Fixes * **api:** export event context symbols ([c5bbaf6](c5bbaf6)), closes [#503](#503)
🎉 This issue has been resolved in version 10.6.2 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Describe the bug
IoEventContextToken
is not exported in the public API.The following does not work :
Editor's import autocomplete generate the following instead :
which produces the following error
Error: Module not found: Error: Package path ./lib/io/event-context is not exported from package /usr/src/app/node_modules/ng-dynamic-component (see exports field in /usr/src/app/node_modules/ng-dynamic-component/package.json)
Expected behavior
IoEventContextToken
should be available from the public API and should be able to be imported like this :Reproduction
N/A
Environment:
Additional context
N/A
The text was updated successfully, but these errors were encountered: