@sprlab/wccompiler 0.11.2 → 0.11.3

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.
@@ -251,7 +251,7 @@ export function walkTree(rootEl, signalNames, computedNames, propNames = new Set
251
251
  prop = 'value'; event = 'input';
252
252
  }
253
253
 
254
- const varName = `__model_${signalName}`;
254
+ const varName = `__model_${signalName}_${modelIdx}`;
255
255
  modelIdx++;
256
256
  modelBindings.push({ varName, signal: signalName, prop, event, coerce, radioValue, path: [...pathParts] });
257
257
  el.removeAttribute('model');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sprlab/wccompiler",
3
- "version": "0.11.2",
3
+ "version": "0.11.3",
4
4
  "description": "Zero-runtime compiler that transforms .wcc single-file components into native web components with signals-based reactivity",
5
5
  "type": "module",
6
6
  "exports": {