ide-assi 0.537.0 → 0.539.0
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/bundle.cjs.js
CHANGED
|
@@ -202935,12 +202935,14 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202935
202935
|
:host {
|
|
202936
202936
|
display: flex;
|
|
202937
202937
|
justify-content: flex-start;
|
|
202938
|
-
padding: 5px;
|
|
202938
|
+
--padding: 5px;
|
|
202939
202939
|
flex-direction: column;
|
|
202940
|
+
width: 100%;
|
|
202941
|
+
height: 100%;
|
|
202940
202942
|
}
|
|
202941
202943
|
|
|
202942
202944
|
.chat-message.loading-tips-message {
|
|
202943
|
-
max-width: 80%;
|
|
202945
|
+
--max-width: 80%;
|
|
202944
202946
|
border-radius: 8px;
|
|
202945
202947
|
font-size: 14px;
|
|
202946
202948
|
background-color: #fff;
|
|
@@ -202949,11 +202951,11 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202949
202951
|
text-align: left;
|
|
202950
202952
|
position: relative;
|
|
202951
202953
|
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
|
|
202952
|
-
padding: 12px 16px;
|
|
202954
|
+
--padding: 12px 16px;
|
|
202953
202955
|
display: flex;
|
|
202954
202956
|
flex-direction: column;
|
|
202955
202957
|
align-items: flex-start;
|
|
202956
|
-
padding-bottom: 8px; /* Adjusted for image container */
|
|
202958
|
+
--padding-bottom: 8px; /* Adjusted for image container */
|
|
202957
202959
|
}
|
|
202958
202960
|
|
|
202959
202961
|
.loading-animation {
|
|
@@ -203178,29 +203180,16 @@ class IdeTipPopup extends HTMLElement {
|
|
|
203178
203180
|
${ninegrid.getCustomPath(this,"ideAssi.css")}
|
|
203179
203181
|
|
|
203180
203182
|
/* ide-tip-popup 전용 스타일 (필요시 추가) */
|
|
203181
|
-
.dialog-header {
|
|
203182
|
-
font-size: 1.2em;
|
|
203183
|
-
font-weight: bold;
|
|
203184
|
-
margin-bottom: 15px;
|
|
203185
|
-
text-align: center;
|
|
203186
|
-
color: #333;
|
|
203187
|
-
padding-top: 10px; /* 헤더 위 공간 */
|
|
203188
|
-
}
|
|
203189
203183
|
.dialog-content {
|
|
203190
203184
|
/* aiLoadingTips가 들어갈 컨테이너 */
|
|
203191
|
-
padding: 0
|
|
203192
|
-
|
|
203193
|
-
|
|
203194
|
-
nx-dialog::part(close-button) { /* nx-dialog의 내부 닫기 버튼에 접근 */
|
|
203195
|
-
top: 10px;
|
|
203196
|
-
right: 10px;
|
|
203185
|
+
--padding: 0;
|
|
203186
|
+
width: 100%;
|
|
203187
|
+
height: 100%;
|
|
203197
203188
|
}
|
|
203198
203189
|
</style>
|
|
203199
203190
|
|
|
203200
203191
|
<nx-dialog>
|
|
203201
|
-
<div slot="header" class="dialog-header">AI가 답변을 준비 중입니다...</div>
|
|
203202
203192
|
<div class="dialog-content"></div>
|
|
203203
|
-
<div slot="footer" class="dialog-footer"></div>
|
|
203204
203193
|
</nx-dialog>
|
|
203205
203194
|
`;
|
|
203206
203195
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202931,12 +202931,14 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202931
202931
|
:host {
|
|
202932
202932
|
display: flex;
|
|
202933
202933
|
justify-content: flex-start;
|
|
202934
|
-
padding: 5px;
|
|
202934
|
+
--padding: 5px;
|
|
202935
202935
|
flex-direction: column;
|
|
202936
|
+
width: 100%;
|
|
202937
|
+
height: 100%;
|
|
202936
202938
|
}
|
|
202937
202939
|
|
|
202938
202940
|
.chat-message.loading-tips-message {
|
|
202939
|
-
max-width: 80%;
|
|
202941
|
+
--max-width: 80%;
|
|
202940
202942
|
border-radius: 8px;
|
|
202941
202943
|
font-size: 14px;
|
|
202942
202944
|
background-color: #fff;
|
|
@@ -202945,11 +202947,11 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202945
202947
|
text-align: left;
|
|
202946
202948
|
position: relative;
|
|
202947
202949
|
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
|
|
202948
|
-
padding: 12px 16px;
|
|
202950
|
+
--padding: 12px 16px;
|
|
202949
202951
|
display: flex;
|
|
202950
202952
|
flex-direction: column;
|
|
202951
202953
|
align-items: flex-start;
|
|
202952
|
-
padding-bottom: 8px; /* Adjusted for image container */
|
|
202954
|
+
--padding-bottom: 8px; /* Adjusted for image container */
|
|
202953
202955
|
}
|
|
202954
202956
|
|
|
202955
202957
|
.loading-animation {
|
|
@@ -203174,29 +203176,16 @@ class IdeTipPopup extends HTMLElement {
|
|
|
203174
203176
|
${ninegrid.getCustomPath(this,"ideAssi.css")}
|
|
203175
203177
|
|
|
203176
203178
|
/* ide-tip-popup 전용 스타일 (필요시 추가) */
|
|
203177
|
-
.dialog-header {
|
|
203178
|
-
font-size: 1.2em;
|
|
203179
|
-
font-weight: bold;
|
|
203180
|
-
margin-bottom: 15px;
|
|
203181
|
-
text-align: center;
|
|
203182
|
-
color: #333;
|
|
203183
|
-
padding-top: 10px; /* 헤더 위 공간 */
|
|
203184
|
-
}
|
|
203185
203179
|
.dialog-content {
|
|
203186
203180
|
/* aiLoadingTips가 들어갈 컨테이너 */
|
|
203187
|
-
padding: 0
|
|
203188
|
-
|
|
203189
|
-
|
|
203190
|
-
nx-dialog::part(close-button) { /* nx-dialog의 내부 닫기 버튼에 접근 */
|
|
203191
|
-
top: 10px;
|
|
203192
|
-
right: 10px;
|
|
203181
|
+
--padding: 0;
|
|
203182
|
+
width: 100%;
|
|
203183
|
+
height: 100%;
|
|
203193
203184
|
}
|
|
203194
203185
|
</style>
|
|
203195
203186
|
|
|
203196
203187
|
<nx-dialog>
|
|
203197
|
-
<div slot="header" class="dialog-header">AI가 답변을 준비 중입니다...</div>
|
|
203198
203188
|
<div class="dialog-content"></div>
|
|
203199
|
-
<div slot="footer" class="dialog-footer"></div>
|
|
203200
203189
|
</nx-dialog>
|
|
203201
203190
|
`;
|
|
203202
203191
|
|
|
@@ -36,12 +36,14 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
36
36
|
:host {
|
|
37
37
|
display: flex;
|
|
38
38
|
justify-content: flex-start;
|
|
39
|
-
padding: 5px;
|
|
39
|
+
--padding: 5px;
|
|
40
40
|
flex-direction: column;
|
|
41
|
+
width: 100%;
|
|
42
|
+
height: 100%;
|
|
41
43
|
}
|
|
42
44
|
|
|
43
45
|
.chat-message.loading-tips-message {
|
|
44
|
-
max-width: 80%;
|
|
46
|
+
--max-width: 80%;
|
|
45
47
|
border-radius: 8px;
|
|
46
48
|
font-size: 14px;
|
|
47
49
|
background-color: #fff;
|
|
@@ -50,11 +52,11 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
50
52
|
text-align: left;
|
|
51
53
|
position: relative;
|
|
52
54
|
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
|
|
53
|
-
padding: 12px 16px;
|
|
55
|
+
--padding: 12px 16px;
|
|
54
56
|
display: flex;
|
|
55
57
|
flex-direction: column;
|
|
56
58
|
align-items: flex-start;
|
|
57
|
-
padding-bottom: 8px; /* Adjusted for image container */
|
|
59
|
+
--padding-bottom: 8px; /* Adjusted for image container */
|
|
58
60
|
}
|
|
59
61
|
|
|
60
62
|
.loading-animation {
|
|
@@ -18,29 +18,16 @@ class IdeTipPopup extends HTMLElement {
|
|
|
18
18
|
${ninegrid.getCustomPath(this,"ideAssi.css")}
|
|
19
19
|
|
|
20
20
|
/* ide-tip-popup 전용 스타일 (필요시 추가) */
|
|
21
|
-
.dialog-header {
|
|
22
|
-
font-size: 1.2em;
|
|
23
|
-
font-weight: bold;
|
|
24
|
-
margin-bottom: 15px;
|
|
25
|
-
text-align: center;
|
|
26
|
-
color: #333;
|
|
27
|
-
padding-top: 10px; /* 헤더 위 공간 */
|
|
28
|
-
}
|
|
29
21
|
.dialog-content {
|
|
30
22
|
/* aiLoadingTips가 들어갈 컨테이너 */
|
|
31
|
-
padding: 0
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
nx-dialog::part(close-button) { /* nx-dialog의 내부 닫기 버튼에 접근 */
|
|
35
|
-
top: 10px;
|
|
36
|
-
right: 10px;
|
|
23
|
+
--padding: 0;
|
|
24
|
+
width: 100%;
|
|
25
|
+
height: 100%;
|
|
37
26
|
}
|
|
38
27
|
</style>
|
|
39
28
|
|
|
40
29
|
<nx-dialog>
|
|
41
|
-
<div slot="header" class="dialog-header">AI가 답변을 준비 중입니다...</div>
|
|
42
30
|
<div class="dialog-content"></div>
|
|
43
|
-
<div slot="footer" class="dialog-footer"></div>
|
|
44
31
|
</nx-dialog>
|
|
45
32
|
`;
|
|
46
33
|
|
package/package.json
CHANGED
|
@@ -36,12 +36,14 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
36
36
|
:host {
|
|
37
37
|
display: flex;
|
|
38
38
|
justify-content: flex-start;
|
|
39
|
-
padding: 5px;
|
|
39
|
+
--padding: 5px;
|
|
40
40
|
flex-direction: column;
|
|
41
|
+
width: 100%;
|
|
42
|
+
height: 100%;
|
|
41
43
|
}
|
|
42
44
|
|
|
43
45
|
.chat-message.loading-tips-message {
|
|
44
|
-
max-width: 80%;
|
|
46
|
+
--max-width: 80%;
|
|
45
47
|
border-radius: 8px;
|
|
46
48
|
font-size: 14px;
|
|
47
49
|
background-color: #fff;
|
|
@@ -50,11 +52,11 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
50
52
|
text-align: left;
|
|
51
53
|
position: relative;
|
|
52
54
|
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
|
|
53
|
-
padding: 12px 16px;
|
|
55
|
+
--padding: 12px 16px;
|
|
54
56
|
display: flex;
|
|
55
57
|
flex-direction: column;
|
|
56
58
|
align-items: flex-start;
|
|
57
|
-
padding-bottom: 8px; /* Adjusted for image container */
|
|
59
|
+
--padding-bottom: 8px; /* Adjusted for image container */
|
|
58
60
|
}
|
|
59
61
|
|
|
60
62
|
.loading-animation {
|
|
@@ -18,29 +18,16 @@ class IdeTipPopup extends HTMLElement {
|
|
|
18
18
|
${ninegrid.getCustomPath(this,"ideAssi.css")}
|
|
19
19
|
|
|
20
20
|
/* ide-tip-popup 전용 스타일 (필요시 추가) */
|
|
21
|
-
.dialog-header {
|
|
22
|
-
font-size: 1.2em;
|
|
23
|
-
font-weight: bold;
|
|
24
|
-
margin-bottom: 15px;
|
|
25
|
-
text-align: center;
|
|
26
|
-
color: #333;
|
|
27
|
-
padding-top: 10px; /* 헤더 위 공간 */
|
|
28
|
-
}
|
|
29
21
|
.dialog-content {
|
|
30
22
|
/* aiLoadingTips가 들어갈 컨테이너 */
|
|
31
|
-
padding: 0
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
nx-dialog::part(close-button) { /* nx-dialog의 내부 닫기 버튼에 접근 */
|
|
35
|
-
top: 10px;
|
|
36
|
-
right: 10px;
|
|
23
|
+
--padding: 0;
|
|
24
|
+
width: 100%;
|
|
25
|
+
height: 100%;
|
|
37
26
|
}
|
|
38
27
|
</style>
|
|
39
28
|
|
|
40
29
|
<nx-dialog>
|
|
41
|
-
<div slot="header" class="dialog-header">AI가 답변을 준비 중입니다...</div>
|
|
42
30
|
<div class="dialog-content"></div>
|
|
43
|
-
<div slot="footer" class="dialog-footer"></div>
|
|
44
31
|
</nx-dialog>
|
|
45
32
|
`;
|
|
46
33
|
|