@nine-lab/nine-mu 0.1.224 → 0.1.226
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 +7 -6
- package/dist/nine-mu.js.map +1 -1
- package/dist/nine-mu.umd.js +1 -1
- package/dist/nine-mu.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NineChat.js +4 -1
package/dist/nine-mu.js
CHANGED
|
@@ -17397,9 +17397,10 @@ initActions_fn = function() {
|
|
|
17397
17397
|
const parsed = JSON.parse(rawText);
|
|
17398
17398
|
__privateGet(this, _manager).addChatHistory(parsed.message);
|
|
17399
17399
|
__privateGet(this, _$nineChatMessage).add("ai", parsed.message);
|
|
17400
|
-
const currRoutes = await __privateGet(this,
|
|
17400
|
+
const currRoutes = await __privateGet(this, _manager).getRoutes();
|
|
17401
17401
|
if ((parsed == null ? void 0 : parsed.selected_tool) === "source-missing") {
|
|
17402
17402
|
nine.alert("메뉴 정리를 위한 라우터 정보 저장 화면으로 이동합니다.").then((res) => {
|
|
17403
|
+
trace.log(currRoutes, parsed == null ? void 0 : parsed.data);
|
|
17403
17404
|
__privateGet(this, _showDiff).call(this, currRoutes, parsed == null ? void 0 : parsed.data, "json");
|
|
17404
17405
|
});
|
|
17405
17406
|
}
|
|
@@ -17417,7 +17418,7 @@ render_fn = function() {
|
|
|
17417
17418
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
17418
17419
|
this.shadowRoot.innerHTML = `
|
|
17419
17420
|
<style>
|
|
17420
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
17421
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.225"}/dist/css/nine-mu.css";
|
|
17421
17422
|
${customImport}
|
|
17422
17423
|
</style>
|
|
17423
17424
|
<div class="wrapper">
|
|
@@ -43636,7 +43637,7 @@ class NineDiff extends HTMLElement {
|
|
|
43636
43637
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
43637
43638
|
this.shadowRoot.innerHTML = `
|
|
43638
43639
|
<style>
|
|
43639
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
43640
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.225"}/dist/css/nine-mu.css";
|
|
43640
43641
|
${customImport}
|
|
43641
43642
|
</style>
|
|
43642
43643
|
|
|
@@ -43746,7 +43747,7 @@ render_fn2 = function() {
|
|
|
43746
43747
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
43747
43748
|
this.shadowRoot.innerHTML = `
|
|
43748
43749
|
<style>
|
|
43749
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
43750
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.225"}/dist/css/nine-mu.css";
|
|
43750
43751
|
${customImport}
|
|
43751
43752
|
</style>
|
|
43752
43753
|
|
|
@@ -44073,7 +44074,7 @@ class ChatMessageBody extends HTMLElement {
|
|
|
44073
44074
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
44074
44075
|
this.shadowRoot.innerHTML = `
|
|
44075
44076
|
<style>
|
|
44076
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
44077
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.225"}/dist/css/nine-mu.css";
|
|
44077
44078
|
${customImport}
|
|
44078
44079
|
</style>
|
|
44079
44080
|
|
|
@@ -44167,7 +44168,7 @@ if (!customElements.get("nine-chat-progress")) {
|
|
|
44167
44168
|
customElements.define("nine-chat-progress", ProgressMessage);
|
|
44168
44169
|
}
|
|
44169
44170
|
const NineMu = {
|
|
44170
|
-
version: "0.1.
|
|
44171
|
+
version: "0.1.225",
|
|
44171
44172
|
init: (config2) => {
|
|
44172
44173
|
trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
44173
44174
|
}
|