@nine-lab/nine-mu 0.1.44 → 0.1.45

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nine-lab/nine-mu",
3
- "version": "0.1.44",
3
+ "version": "0.1.45",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -141,8 +141,8 @@ export class NineChat extends HTMLElement {
141
141
  this.#diffPopup = this.shadowRoot.querySelector('nine-diff-popup');
142
142
  }
143
143
 
144
- showDiff = (data) => {
145
- this.#diffPopup.popup().data(data);
144
+ showDiff = (asis, tobe, lang) => {
145
+ this.#diffPopup.popup().data(asis, tobe, lang);
146
146
  }
147
147
  }
148
148