expo-module-template 10.15.9 → 10.15.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -40,7 +40,7 @@ class <%- project.moduleName %> : Module() {
|
|
|
40
40
|
// the view definition: Prop, Events.
|
|
41
41
|
View(<%- project.viewName %>::class) {
|
|
42
42
|
// Defines a setter for the `url` prop.
|
|
43
|
-
Prop("url") { view: <%- project.viewName %>, url:
|
|
43
|
+
Prop("url") { view: <%- project.viewName %>, url: URL ->
|
|
44
44
|
view.webView.loadUrl(url.toString())
|
|
45
45
|
}
|
|
46
46
|
// Defines an event that the view can send to JavaScript.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-module-template",
|
|
3
|
-
"version": "10.15.
|
|
3
|
+
"version": "10.15.11",
|
|
4
4
|
"description": "ExpoModuleTemplate standalone module",
|
|
5
5
|
"scripts": {},
|
|
6
6
|
"keywords": [
|
|
@@ -20,7 +20,9 @@
|
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"homepage": "https://docs.expo.dev/modules",
|
|
22
22
|
"dependencies": {},
|
|
23
|
-
"devDependencies": {
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"typescript": "5.3.2"
|
|
25
|
+
},
|
|
24
26
|
"peerDependencies": {},
|
|
25
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "65ae6fda78837f77eea5a2107066fc545a211804"
|
|
26
28
|
}
|