@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/dist/css/nine-mu.css +2 -2
- package/dist/nine-mu.js +140 -15
- 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/public/css/nine-mu.css +2 -2
- package/src/components/ai/{NineNatualQuery.js → NineNaturalQuery.js} +4 -4
- package/src/components/ai/{NineNatualQueryResult.js → NineNaturalQueryResult.js} +3 -3
- package/src/index.js +2 -2
package/package.json
CHANGED
package/public/css/nine-mu.css
CHANGED
|
@@ -1030,7 +1030,7 @@
|
|
|
1030
1030
|
100% { opacity: 0.6; }
|
|
1031
1031
|
}
|
|
1032
1032
|
|
|
1033
|
-
:host(nine-
|
|
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-
|
|
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
|
-
|
|
3
|
+
import { TipPopup } from '@nine-lab/nine-ai';
|
|
4
4
|
|
|
5
|
-
export class
|
|
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-
|
|
144
|
-
customElements.define("nine-
|
|
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
|
|
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-
|
|
144
|
-
customElements.define("nine-
|
|
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/
|
|
8
|
-
|
|
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
|
/**
|