@nine-lab/nine-mu 0.1.21 → 0.1.23

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.21",
3
+ "version": "0.1.23",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -1,6 +1,6 @@
1
1
  import { trace } from '@nine-lab/nine-util';
2
2
 
3
- class NineDiffPopup extends HTMLElement {
3
+ export class NineDiffPopup extends HTMLElement {
4
4
  #container = null;
5
5
  #dialog = null;
6
6
  #resolve = null;
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 { NineDiffContainer } from './components/NineDiffContainer.js';
5
+ import { NineDiffPopup } from './components/NineDiffPopup.js';
5
6
  import { NineDialog } from './components/NineDialog.js';
6
7
 
7
8
  /**
@@ -17,4 +18,4 @@ export const NineMu = {
17
18
 
18
19
  // 기본 export 및 컴포넌트 export
19
20
  export default NineMu;
20
- export { NineChat, NineDiff, NineDiffContainer, NineDialog };
21
+ export { NineChat, NineDiff, NineDiffContainer, NineDialog, NineDiffPopup };