@nine-lab/nine-mu 0.1.75 → 0.1.76

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.75",
3
+ "version": "0.1.76",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -1,4 +1,4 @@
1
- import { nine, trace } from '@nine-lab/nine-util';
1
+ import { nine, trace, api } from '@nine-lab/nine-util';
2
2
  import { NineMuService } from '../services/NineMuService.js';
3
3
 
4
4
  export class NineChat extends HTMLElement {
@@ -20,14 +20,20 @@ export class NineChat extends HTMLElement {
20
20
  this.#initInteractions(); // UI 토글 로직
21
21
  this.#initActions(); // 엔터 시 실행 로직
22
22
 
23
+
24
+ const res = await api.get("/nine-mu/config/get");
25
+ console.log(res);
26
+
23
27
  // 경로 데이터 로드
24
28
  this.#routes = await this.#service.fetchRoutes(this.getAttribute('route-url'));
29
+
30
+
25
31
  }
26
32
 
27
33
  // --- [그룹 1: Interaction] 화면 토글 및 메뉴 클릭 ---
28
34
  #initInteractions() {
29
35
  const $settings = this.shadowRoot.querySelector('nine-ai-settings');
30
- const $menuIcons = this.shadowRoot.querySelectorAll(".menu-icon");
36
+ const $menuIcons = this.shadowRoot.querySelectorAll("menu .menu-icon");
31
37
 
32
38
  const toggleUI = () => this.classList.toggle("collapse");
33
39
  this.shadowRoot.querySelector(".expand-icon").addEventListener("click", toggleUI);
@@ -131,6 +137,9 @@ export class NineChat extends HTMLElement {
131
137
  <div class="menu-icon menu-filter"></div>
132
138
  <div class="menu-icon menu-general active"></div>
133
139
  <div class="menu-icon menu-setting"></div>
140
+ </div>
141
+ <div class="menu2">
142
+ <div class="menu-icon make-menu"></div>
134
143
  <div class="menu-icon source-gen"></div>
135
144
  </div>
136
145
  </div>