@nine-lab/nine-mu 0.1.304 → 0.1.306

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.304",
3
+ "version": "0.1.306",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -241,13 +241,13 @@ export class NineChat extends HTMLElement {
241
241
 
242
242
  #showDiff = (asis, tobe, lang) => {
243
243
  // 1. 혹시 잔상이 남아있을지 모르니 기존에 생성된 팝업이 있다면 강제 제거
244
- const oldPopup = this.shadowRoot.querySelector('nine-diff-popup');
244
+ const oldPopup = this.shadowRoot.querySelector('nine-menu-diff-popup');
245
245
  if (oldPopup) {
246
246
  oldPopup.remove();
247
247
  }
248
248
 
249
249
  // 2. 동적으로 커스텀 엘리먼트 생성
250
- const $diffPopup = document.createElement('nine-diff-popup');
250
+ const $diffPopup = document.createElement('nine-menu-diff-popup');
251
251
 
252
252
  // 3. 래퍼(wrapper) 안이나 shadowRoot 제일 밑바닥에 부착
253
253
  const container = this.shadowRoot.querySelector('.wrapper') || this.shadowRoot;
package/src/index.js CHANGED
@@ -2,6 +2,7 @@ import { trace } from '@nine-lab/nine-util';
2
2
  import { NineChat } from './components/NineChat.js';
3
3
  import { NineDiff } from './components/NineDiff.js';
4
4
  import { NineDiffPopup } from './components/NineDiffPopup.js';
5
+ import { NineMenuDiffPopup } from './components/NineMenuDiffPopup.js';
5
6
  import './components/ChatMessage.js';
6
7
 
7
8
  /**