Closed jakobe closed 5 years ago
Fixed by #44
@shripalsoni04 pls merge and give a new minor release its breaking after upgrade
Thanks a lot @jakobe for the PR and @kdhrubo for a reminder.
I have merged the PR and it is released with version 1.4.3
You're welcome @shripalsoni04 and thanks for accepting the PR :)
In
index.d.ts
the current import is:import {WebView} from 'ui/web-view';
This creates an implicit dependency in the project consuming the package wheretsconfig
need to have the following wildcard paths specified:This can easily be fixed by importing explicitly from
tns-core-modules
:import {WebView} from 'tns-core-modules/ui/web-view';