ide-assi 0.552.0 → 0.554.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
|
@@ -202946,10 +202946,10 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202946
202946
|
|
|
202947
202947
|
<div class="tip-image-container">
|
|
202948
202948
|
<img class="tip-image" src="" alt="팁 관련 이미지">
|
|
202949
|
+
<div class="current-tip-wrapper">
|
|
202950
|
+
<p class="current-tip"></p>
|
|
202951
|
+
</div>
|
|
202949
202952
|
</div>
|
|
202950
|
-
<div class="current-tip-wrapper">
|
|
202951
|
-
<p class="current-tip"></p>
|
|
202952
|
-
</div>
|
|
202953
202953
|
</div>
|
|
202954
202954
|
</div>
|
|
202955
202955
|
`;
|
|
@@ -203048,7 +203048,8 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
203048
203048
|
console.log(currentTip);
|
|
203049
203049
|
|
|
203050
203050
|
if (this.tipElement && currentTip) {
|
|
203051
|
-
this.tipElement.textContent = currentTip.text;
|
|
203051
|
+
//this.tipElement.textContent = currentTip.text;
|
|
203052
|
+
this.tipElement.innerHTML = currentTip.text;
|
|
203052
203053
|
|
|
203053
203054
|
// Clear any existing image cycling interval for the previous tip
|
|
203054
203055
|
if (this.#imageIntervalId) {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202942,10 +202942,10 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202942
202942
|
|
|
202943
202943
|
<div class="tip-image-container">
|
|
202944
202944
|
<img class="tip-image" src="" alt="팁 관련 이미지">
|
|
202945
|
+
<div class="current-tip-wrapper">
|
|
202946
|
+
<p class="current-tip"></p>
|
|
202947
|
+
</div>
|
|
202945
202948
|
</div>
|
|
202946
|
-
<div class="current-tip-wrapper">
|
|
202947
|
-
<p class="current-tip"></p>
|
|
202948
|
-
</div>
|
|
202949
202949
|
</div>
|
|
202950
202950
|
</div>
|
|
202951
202951
|
`;
|
|
@@ -203044,7 +203044,8 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
203044
203044
|
console.log(currentTip);
|
|
203045
203045
|
|
|
203046
203046
|
if (this.tipElement && currentTip) {
|
|
203047
|
-
this.tipElement.textContent = currentTip.text;
|
|
203047
|
+
//this.tipElement.textContent = currentTip.text;
|
|
203048
|
+
this.tipElement.innerHTML = currentTip.text;
|
|
203048
203049
|
|
|
203049
203050
|
// Clear any existing image cycling interval for the previous tip
|
|
203050
203051
|
if (this.#imageIntervalId) {
|
|
@@ -50,10 +50,10 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
50
50
|
|
|
51
51
|
<div class="tip-image-container">
|
|
52
52
|
<img class="tip-image" src="" alt="팁 관련 이미지">
|
|
53
|
+
<div class="current-tip-wrapper">
|
|
54
|
+
<p class="current-tip"></p>
|
|
55
|
+
</div>
|
|
53
56
|
</div>
|
|
54
|
-
<div class="current-tip-wrapper">
|
|
55
|
-
<p class="current-tip"></p>
|
|
56
|
-
</div>
|
|
57
57
|
</div>
|
|
58
58
|
</div>
|
|
59
59
|
`;
|
|
@@ -152,7 +152,8 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
152
152
|
console.log(currentTip);
|
|
153
153
|
|
|
154
154
|
if (this.tipElement && currentTip) {
|
|
155
|
-
this.tipElement.textContent = currentTip.text;
|
|
155
|
+
//this.tipElement.textContent = currentTip.text;
|
|
156
|
+
this.tipElement.innerHTML = currentTip.text;
|
|
156
157
|
|
|
157
158
|
// Clear any existing image cycling interval for the previous tip
|
|
158
159
|
if (this.#imageIntervalId) {
|
package/package.json
CHANGED
|
@@ -50,10 +50,10 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
50
50
|
|
|
51
51
|
<div class="tip-image-container">
|
|
52
52
|
<img class="tip-image" src="" alt="팁 관련 이미지">
|
|
53
|
+
<div class="current-tip-wrapper">
|
|
54
|
+
<p class="current-tip"></p>
|
|
55
|
+
</div>
|
|
53
56
|
</div>
|
|
54
|
-
<div class="current-tip-wrapper">
|
|
55
|
-
<p class="current-tip"></p>
|
|
56
|
-
</div>
|
|
57
57
|
</div>
|
|
58
58
|
</div>
|
|
59
59
|
`;
|
|
@@ -152,7 +152,8 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
152
152
|
console.log(currentTip);
|
|
153
153
|
|
|
154
154
|
if (this.tipElement && currentTip) {
|
|
155
|
-
this.tipElement.textContent = currentTip.text;
|
|
155
|
+
//this.tipElement.textContent = currentTip.text;
|
|
156
|
+
this.tipElement.innerHTML = currentTip.text;
|
|
156
157
|
|
|
157
158
|
// Clear any existing image cycling interval for the previous tip
|
|
158
159
|
if (this.#imageIntervalId) {
|