@nine-lab/nine-mu 0.1.322 → 0.1.324
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 +15 -0
- package/dist/nine-mu.js +9 -17
- 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/public/css/nine-mu.css +15 -0
- package/src/components/NotificationHandler.js +7 -2
package/dist/css/nine-mu.css
CHANGED
|
@@ -831,6 +831,21 @@
|
|
|
831
831
|
}
|
|
832
832
|
.btn { padding: 8px 20px; cursor: pointer; border-radius: 4px; border: 1px solid #ccc; font-weight: bold; }
|
|
833
833
|
.btn-confirm { background: #007bff; color: white; border: none; }
|
|
834
|
+
.btn-confirm[disabled] {
|
|
835
|
+
/* 1. 마우스 커서를 불가능(금지) 모양으로 변경 */
|
|
836
|
+
cursor: not-allowed;
|
|
837
|
+
|
|
838
|
+
/* 2. 버튼을 반투명하게 만들어 비활성화된 느낌 부여 */
|
|
839
|
+
opacity: 0.5;
|
|
840
|
+
|
|
841
|
+
/* 3. 혹시 모를 마우스 클릭/호버 이벤트 완전히 차단 */
|
|
842
|
+
pointer-events: none;
|
|
843
|
+
|
|
844
|
+
/* 4. (선택사항) 배경색이나 보더를 더 연한 회색 톤으로 다운 */
|
|
845
|
+
background-color: #e0e0e0;
|
|
846
|
+
color: #a0a0a0;
|
|
847
|
+
border-color: #d0d0d0;
|
|
848
|
+
}
|
|
834
849
|
|
|
835
850
|
.tab-pages .tab-page {
|
|
836
851
|
height: 100%;
|
package/dist/nine-mu.js
CHANGED
|
@@ -17114,14 +17114,8 @@ class NotificationHandler {
|
|
|
17114
17114
|
* [분리 비즈니스 로직 2] 수신된 소스코드 데이터 유효성 검증 및 추후 파일 저장 연동
|
|
17115
17115
|
*/
|
|
17116
17116
|
__privateAdd(this, _generateSource, async (data) => {
|
|
17117
|
-
|
|
17118
|
-
|
|
17119
|
-
//package_path: data.path,
|
|
17120
|
-
//file_name: data.file_name,
|
|
17121
|
-
currentPath: location.pathname,
|
|
17122
|
-
contents: data.source
|
|
17123
|
-
});
|
|
17124
|
-
trace.log(res);
|
|
17117
|
+
trace.log(data);
|
|
17118
|
+
return;
|
|
17125
17119
|
});
|
|
17126
17120
|
__privateSet(this, _owner, owner);
|
|
17127
17121
|
}
|
|
@@ -17149,9 +17143,7 @@ handleLoggingMessage_fn = function(params) {
|
|
|
17149
17143
|
}
|
|
17150
17144
|
switch (logger) {
|
|
17151
17145
|
case "generate-source-brain":
|
|
17152
|
-
|
|
17153
|
-
__privateGet(this, _generateSource).call(this, data);
|
|
17154
|
-
}
|
|
17146
|
+
__privateGet(this, _generateSource).call(this, data);
|
|
17155
17147
|
break;
|
|
17156
17148
|
case "modify-source-brain":
|
|
17157
17149
|
if (data && data.source) {
|
|
@@ -17561,7 +17553,7 @@ render_fn = function() {
|
|
|
17561
17553
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
17562
17554
|
this.shadowRoot.innerHTML = `
|
|
17563
17555
|
<style>
|
|
17564
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
17556
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.323"}/dist/css/nine-mu.css";
|
|
17565
17557
|
${customImport}
|
|
17566
17558
|
</style>
|
|
17567
17559
|
<div class="wrapper">
|
|
@@ -43813,7 +43805,7 @@ class NineDiff extends HTMLElement {
|
|
|
43813
43805
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
43814
43806
|
this.shadowRoot.innerHTML = `
|
|
43815
43807
|
<style>
|
|
43816
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
43808
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.323"}/dist/css/nine-mu.css";
|
|
43817
43809
|
${customImport}
|
|
43818
43810
|
</style>
|
|
43819
43811
|
|
|
@@ -43953,7 +43945,7 @@ renderScaffolding_fn = function() {
|
|
|
43953
43945
|
const customImport = nine$1.cssPath ? `@import "${nine$1.cssPath}/nine-mu.css";` : "";
|
|
43954
43946
|
this.shadowRoot.innerHTML = `
|
|
43955
43947
|
<style>
|
|
43956
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
43948
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.323"}/dist/css/nine-mu.css";
|
|
43957
43949
|
${customImport}
|
|
43958
43950
|
</style>
|
|
43959
43951
|
|
|
@@ -44062,7 +44054,7 @@ render_fn2 = function() {
|
|
|
44062
44054
|
const customImport = nine$1.cssPath ? `@import "${nine$1.cssPath}/nine-mu.css";` : "";
|
|
44063
44055
|
this.shadowRoot.innerHTML = `
|
|
44064
44056
|
<style>
|
|
44065
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
44057
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.323"}/dist/css/nine-mu.css";
|
|
44066
44058
|
${customImport}
|
|
44067
44059
|
</style>
|
|
44068
44060
|
|
|
@@ -44393,7 +44385,7 @@ class ChatMessageBody extends HTMLElement {
|
|
|
44393
44385
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
44394
44386
|
this.shadowRoot.innerHTML = `
|
|
44395
44387
|
<style>
|
|
44396
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
44388
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.323"}/dist/css/nine-mu.css";
|
|
44397
44389
|
${customImport}
|
|
44398
44390
|
</style>
|
|
44399
44391
|
|
|
@@ -44487,7 +44479,7 @@ if (!customElements.get("nine-chat-progress")) {
|
|
|
44487
44479
|
customElements.define("nine-chat-progress", ProgressMessage);
|
|
44488
44480
|
}
|
|
44489
44481
|
const NineMu = {
|
|
44490
|
-
version: "0.1.
|
|
44482
|
+
version: "0.1.323",
|
|
44491
44483
|
init: (config2) => {
|
|
44492
44484
|
trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
44493
44485
|
}
|