ripple 0.2.81 → 0.2.82

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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Ripple is an elegant TypeScript UI framework",
4
4
  "license": "MIT",
5
5
  "author": "Dominic Gannaway",
6
- "version": "0.2.81",
6
+ "version": "0.2.82",
7
7
  "type": "module",
8
8
  "module": "src/runtime/index-client.js",
9
9
  "main": "src/runtime/index-client.js",
@@ -697,20 +697,6 @@ const visitors = {
697
697
  props.push(
698
698
  b.prop('get', attr.name, b.function(null, [], b.block([b.return(property)]))),
699
699
  );
700
-
701
- if (attr.value.type === 'Identifier' && attr.value.tracked) {
702
- props.push(
703
- b.prop(
704
- 'set',
705
- attr.name,
706
- b.function(
707
- null,
708
- [b.id('__v')],
709
- b.block([b.stmt(visit(b.assignment('=', attr.value, b.id('__v'))))]),
710
- ),
711
- ),
712
- );
713
- }
714
700
  } else {
715
701
  props.push(b.prop('init', attr.name, property));
716
702
  }
@@ -1294,7 +1294,7 @@ describe('basic client', () => {
1294
1294
  <Child
1295
1295
  class="my-button"
1296
1296
  onClick={() => @name === 'Click Me' ? @name = 'Clicked' : @name = 'Click Me'}
1297
- count={@count}
1297
+ {count}
1298
1298
  {ref buttonRef}
1299
1299
  >{@name}</Child>;
1300
1300
  }