Skip to content

Releases: wpdas/near-social-local-viewer

v2.1.3

21 Apr 00:28
Compare
Choose a tag to compare
  • Remove analytics

v2.1.2

17 Apr 22:59
Compare
Choose a tag to compare
  • testnet support

v2.1.1

14 Apr 04:37
Compare
Choose a tag to compare

v2.1.0

13 Apr 23:28
Compare
Choose a tag to compare

v2.0.3

11 Apr 14:51
Compare
Choose a tag to compare

v2.0.2

06 Apr 18:11
Compare
Choose a tag to compare
  • logs removed

v2.0.1

06 Apr 15:44
Compare
Choose a tag to compare
  • node version set.

v2.0.0-rc2

06 Apr 14:46
Compare
Choose a tag to compare
  • fix express dependency

v2.0.0-rc

06 Apr 14:35
053ec22
Compare
Choose a tag to compare

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" }}
/>

v2.0.0

06 Apr 15:13
Compare
Choose a tag to compare
  • stable version