@nine-lab/nine-mu 0.1.404 → 0.1.406

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.404",
3
+ "version": "0.1.406",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -1030,7 +1030,7 @@
1030
1030
  100% { opacity: 0.6; }
1031
1031
  }
1032
1032
 
1033
- :host(nine-natual-query) {
1033
+ :host(nine-natural-query) {
1034
1034
  .input-wrapper {
1035
1035
  position: relative;
1036
1036
  width: 100%;
@@ -1078,7 +1078,7 @@
1078
1078
  }
1079
1079
  }
1080
1080
 
1081
- :host(nine-natual-query-result) {
1081
+ :host(nine-natural-query-result) {
1082
1082
  display: block;
1083
1083
  width: 100%;
1084
1084
  height: 100%;
@@ -1,8 +1,8 @@
1
1
  import { trace } from '@nopeer';
2
2
  import { api } from '@nine-lab/nine-util';
3
- //import { TipPopup } from '@nine-lab/nine-ai';
3
+ import { TipPopup } from '@nine-lab/nine-ai';
4
4
 
5
- export class NineNatualQuery extends HTMLElement {
5
+ export class NineNaturalQuery extends HTMLElement {
6
6
 
7
7
  #schema = null;
8
8
  #connectorUrl = '';
@@ -140,6 +140,6 @@ export class NineNatualQuery extends HTMLElement {
140
140
  }
141
141
  }
142
142
 
143
- if (!customElements.get("nine-natual-query")) {
144
- customElements.define("nine-natual-query", NineNatualQuery);
143
+ if (!customElements.get("nine-natural-query")) {
144
+ customElements.define("nine-natural-query", NineNaturalQuery);
145
145
  }
@@ -2,7 +2,7 @@ import { trace } from '@nopeer';
2
2
  import { nine } from '@nine-lab/nine-util';
3
3
  //import ninegrid from "ninegrid2";
4
4
 
5
- export class NineNatualQueryResult extends HTMLElement {
5
+ export class NineNaturalQueryResult extends HTMLElement {
6
6
  // 내부 상태 및 상수 캡슐화
7
7
  #data = [];
8
8
  #wrapper = null;
@@ -140,6 +140,6 @@ export class NineNatualQueryResult extends HTMLElement {
140
140
  }
141
141
  }
142
142
 
143
- if (!customElements.get("nine-natual-query-result")) {
144
- customElements.define("nine-natual-query-result", NineNatualQueryResult);
143
+ if (!customElements.get("nine-natural-query-result")) {
144
+ customElements.define("nine-natural-query-result", NineNaturalQueryResult);
145
145
  }
package/src/index.js CHANGED
@@ -4,8 +4,8 @@ import { NineDiff } from './components/NineDiff.js';
4
4
  import { NineDiffPopup } from './components/NineDiffPopup.js';
5
5
  import { NineMenuDiffPopup } from './components/NineMenuDiffPopup.js';
6
6
  import './components/ChatMessage.js';
7
- import './components/ai/NineNatualQuery.js';
8
- //import './components/ai/NineNatualQueryResult.js';
7
+ import './components/ai/NineNaturalQuery.js';
8
+ import './components/ai/NineNaturalQueryResult.js';
9
9
  import { NineHook, useScreen } from './components/hook/NineHook.js';
10
10
 
11
11
  /**