Skip to content

Releases: recksjs/recks

v0.0.14

21 Sep 16:44
Compare
Choose a tag to compare

Adds:

  • Props as streams for static (intrinsic) elements

    <span title={ timer(0, 100) } />
  • Basic TypeScript support for JSX (TSX)

    <Header title="Hello world" /> // <- ok
    <Header title={ 1 } />         // <- error
    //      ^~~ - title should be string
    
    function Header(props$: Observable<{ title: string }>){
      return <h1>{ props$.pipe(pluck('title')) }</h1>
    }

commits:

  • removed covered TODO test 595b337
  • updated changelog 55be2ca
  • dropped components experimental Observable attr 0c256d6
  • 0.0.14-2 cb0d87d
  • adding TS support - attempt 2 e53af5a
  • updated CHANGELOG 5a55d41
  • adding TS support 34c6c4a
  • [tests] added attribute and observable tests 2815c4d
  • 0.0.14-1 caa4a7a
  • fixed attribute removal on static element update 6c73aef
  • added tests for events and ref 6be4881
  • [chore] updated packages d1d5c86
  • structured and added tests 211dad1
  • updated splitPropsToStreams types and desc 8424d14
  • 0.0.14-0 ea83b49
  • added unsubscriptions 8a898ea
  • stable prop threads 52c6c9f
  • fixed issue w/ emtpy first elements in Arrays 7a87ae8
  • straight subscription chain in components 816a003
  • observable props for static elements 867dfd0
  • Prettier (#4) 4bce46b
  • GitBook: [master] 9 pages modified 7d0e730
  • GitBook: [master] 2 pages modified ad95d3f
  • GitBook: [master] 3 pages modified ae183a9
  • GitBook: [master] 2 pages modified e4ddeda
  • [docs] updated readme f1c019d

v0.0.13...v0.0.14

v0.0.14-2 TS

21 Sep 13:14
Compare
Choose a tag to compare
v0.0.14-2 TS Pre-release
Pre-release
  • adding TS support - attempt 2 1a4bfb5
  • updated CHANGELOG 41291e9
  • adding TS support 8947d01
  • [tests] added attribute and observable tests 03e4a58

v0.0.14-1...v0.0.14-2

0.0.14 preview

16 Sep 09:39
Compare
Choose a tag to compare
0.0.14 preview Pre-release
Pre-release

fixes attribute removal for static elements, e.g:

return of(<span title={ stream$ } />, <span />)

Commits:

  • fixed attribute removal on static element update 496b3aa
  • added tests for events and ref 37a7e9e
  • [chore] updated packages d40151d
  • structured and added tests 985e17f
  • updated splitPropsToStreams types and desc 3789c6e

v0.0.14-0...v0.0.14-1

0.0.14 preview

14 Sep 10:28
Compare
Choose a tag to compare
0.0.14 preview Pre-release
Pre-release
  • added unsubscriptions 071bd9d
  • stable prop threads ae934ae
  • fixed issue w/ emtpy first elements in Arrays f3d705d
  • straight subscription chain in components 3ef9571
  • observable props for static elements 1a0d5c3

v0.0.13...v0.0.14-0

v0.0.13

22 Jul 13:50
Compare
Choose a tag to compare
  • [fix] fixing error propagation and complete for static comp cfc42a9

v0.0.12...v0.0.13

v0.0.12

22 Jul 13:24
Compare
Choose a tag to compare

[chore] issues with np publishing flow:

  • [chore] added cleaning script after np 663fe90
  • [chore] added buid to publish flow 3e6f69d

v0.0.10...v0.0.12

v0.0.10

22 Jul 12:54
Compare
Choose a tag to compare
  • fixed null -> component switch 13508ca

0.0.9...v0.0.10