ide-assi 0.543.0 → 0.545.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
|
@@ -202926,14 +202926,24 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202926
202926
|
// Set up the initial structure of the component in its Shadow DOM
|
|
202927
202927
|
this.shadowRoot.innerHTML = `
|
|
202928
202928
|
<style>
|
|
202929
|
+
/* Import ninegrid's base AI CSS */
|
|
202929
202930
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/ideAssi.css";
|
|
202931
|
+
/* Import custom CSS specific to this component (adjust path as needed) */
|
|
202930
202932
|
${ninegrid.getCustomPath(this, "ideAssi.css")}
|
|
202933
|
+
|
|
202934
|
+
|
|
202935
|
+
.loading-animation {
|
|
202936
|
+
animation: spin 1s linear infinite;
|
|
202937
|
+
}
|
|
202938
|
+
|
|
202939
|
+
@keyframes spin {
|
|
202940
|
+
0% { transform: rotate(0deg); }
|
|
202941
|
+
100% { transform: rotate(360deg); }
|
|
202942
|
+
}
|
|
202931
202943
|
</style>
|
|
202932
|
-
|
|
202933
202944
|
<div class="chat-message loading-tips-message">
|
|
202934
202945
|
<div class="loading-animation"></div>
|
|
202935
202946
|
<div class="tip-content">
|
|
202936
|
-
<p class="tip-label">오늘의 AI 팁:</p>
|
|
202937
202947
|
<p class="current-tip"></p>
|
|
202938
202948
|
<div class="tip-image-container">
|
|
202939
202949
|
<img class="tip-image" src="" alt="팁 관련 이미지">
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202922,14 +202922,24 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202922
202922
|
// Set up the initial structure of the component in its Shadow DOM
|
|
202923
202923
|
this.shadowRoot.innerHTML = `
|
|
202924
202924
|
<style>
|
|
202925
|
+
/* Import ninegrid's base AI CSS */
|
|
202925
202926
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/ideAssi.css";
|
|
202927
|
+
/* Import custom CSS specific to this component (adjust path as needed) */
|
|
202926
202928
|
${ninegrid.getCustomPath(this, "ideAssi.css")}
|
|
202929
|
+
|
|
202930
|
+
|
|
202931
|
+
.loading-animation {
|
|
202932
|
+
animation: spin 1s linear infinite;
|
|
202933
|
+
}
|
|
202934
|
+
|
|
202935
|
+
@keyframes spin {
|
|
202936
|
+
0% { transform: rotate(0deg); }
|
|
202937
|
+
100% { transform: rotate(360deg); }
|
|
202938
|
+
}
|
|
202927
202939
|
</style>
|
|
202928
|
-
|
|
202929
202940
|
<div class="chat-message loading-tips-message">
|
|
202930
202941
|
<div class="loading-animation"></div>
|
|
202931
202942
|
<div class="tip-content">
|
|
202932
|
-
<p class="tip-label">오늘의 AI 팁:</p>
|
|
202933
202943
|
<p class="current-tip"></p>
|
|
202934
202944
|
<div class="tip-image-container">
|
|
202935
202945
|
<img class="tip-image" src="" alt="팁 관련 이미지">
|
|
@@ -27,14 +27,24 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
27
27
|
// Set up the initial structure of the component in its Shadow DOM
|
|
28
28
|
this.shadowRoot.innerHTML = `
|
|
29
29
|
<style>
|
|
30
|
+
/* Import ninegrid's base AI CSS */
|
|
30
31
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/ideAssi.css";
|
|
32
|
+
/* Import custom CSS specific to this component (adjust path as needed) */
|
|
31
33
|
${ninegrid.getCustomPath(this, "ideAssi.css")}
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
.loading-animation {
|
|
37
|
+
animation: spin 1s linear infinite;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@keyframes spin {
|
|
41
|
+
0% { transform: rotate(0deg); }
|
|
42
|
+
100% { transform: rotate(360deg); }
|
|
43
|
+
}
|
|
32
44
|
</style>
|
|
33
|
-
|
|
34
45
|
<div class="chat-message loading-tips-message">
|
|
35
46
|
<div class="loading-animation"></div>
|
|
36
47
|
<div class="tip-content">
|
|
37
|
-
<p class="tip-label">오늘의 AI 팁:</p>
|
|
38
48
|
<p class="current-tip"></p>
|
|
39
49
|
<div class="tip-image-container">
|
|
40
50
|
<img class="tip-image" src="" alt="팁 관련 이미지">
|
package/package.json
CHANGED
|
@@ -27,14 +27,24 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
27
27
|
// Set up the initial structure of the component in its Shadow DOM
|
|
28
28
|
this.shadowRoot.innerHTML = `
|
|
29
29
|
<style>
|
|
30
|
+
/* Import ninegrid's base AI CSS */
|
|
30
31
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/ideAssi.css";
|
|
32
|
+
/* Import custom CSS specific to this component (adjust path as needed) */
|
|
31
33
|
${ninegrid.getCustomPath(this, "ideAssi.css")}
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
.loading-animation {
|
|
37
|
+
animation: spin 1s linear infinite;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@keyframes spin {
|
|
41
|
+
0% { transform: rotate(0deg); }
|
|
42
|
+
100% { transform: rotate(360deg); }
|
|
43
|
+
}
|
|
32
44
|
</style>
|
|
33
|
-
|
|
34
45
|
<div class="chat-message loading-tips-message">
|
|
35
46
|
<div class="loading-animation"></div>
|
|
36
47
|
<div class="tip-content">
|
|
37
|
-
<p class="tip-label">오늘의 AI 팁:</p>
|
|
38
48
|
<p class="current-tip"></p>
|
|
39
49
|
<div class="tip-image-container">
|
|
40
50
|
<img class="tip-image" src="" alt="팁 관련 이미지">
|