Releases: wpdas/near-social-local-viewer
Releases · wpdas/near-social-local-viewer
v2.1.3
v2.1.2
v2.1.1
v2.1.0
- new VM version 1.2.0 with
iframeResizer
support - Get to know how the
iframeResizer
works within the VM here: https://github.com/NearSocial/VM/releases/tag/1.2.0
v2.0.3
v2.0.2
v2.0.1
v2.0.0-rc2
- fix
express
dependency
v2.0.0-rc
Upgrade to support multiple local widgets.
- Create, edit, interact with multiple local and remote widgets
- Allow a widget to interact with another local widget
- Auto refresh
- This is a breaking change
NSLVWidget
widget created to support this tool
How to load a local / remote widgets inside another local widget
// Local Widgets
<Widget
{/* Use NSLVWidget: It will always try to find a local Widget first, if it fails, */}
{/* the remote Widget will be used. */}
src={"wendersonpires.near/widget/NSLVWidget"}
props={{
{/* Use "props.src" to set the Widget you want */}
src: "wendersonpires.near/widget/Profile",
{/* Use "props.srcProps" to set the props to be passed to the Widget you want */}
srcProps: { userName: "Wendz", favColor: "blue" },
}}
/>
// Normal remote Widgets
<Widget
src={"wendersonpires.near/widget/ChatV2"}
props={{ room: "dragon-ball-z" }}
/>