@nine-lab/nine-mu 0.1.304 → 0.1.305
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/dist/nine-mu.js +107 -7
- package/dist/nine-mu.js.map +1 -1
- package/dist/nine-mu.umd.js +3 -3
- package/dist/nine-mu.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NineChat.js +1 -1
- package/src/index.js +1 -0
package/package.json
CHANGED
|
@@ -241,7 +241,7 @@ 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
|
}
|
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
|
/**
|