ide-assi 0.545.0 → 0.547.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
|
@@ -202933,7 +202933,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202933
202933
|
|
|
202934
202934
|
|
|
202935
202935
|
.loading-animation {
|
|
202936
|
-
animation: spin 1s linear infinite;
|
|
202936
|
+
--animation: spin 1s linear infinite;
|
|
202937
202937
|
}
|
|
202938
202938
|
|
|
202939
202939
|
@keyframes spin {
|
|
@@ -202942,7 +202942,9 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202942
202942
|
}
|
|
202943
202943
|
</style>
|
|
202944
202944
|
<div class="chat-message loading-tips-message">
|
|
202945
|
-
<div class="loading-animation"
|
|
202945
|
+
<div class="loading-animation-wrapper">
|
|
202946
|
+
<div class="loading-animation"></div>
|
|
202947
|
+
</div>
|
|
202946
202948
|
<div class="tip-content">
|
|
202947
202949
|
<p class="current-tip"></p>
|
|
202948
202950
|
<div class="tip-image-container">
|
|
@@ -202954,6 +202956,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202954
202956
|
// Cache DOM element references
|
|
202955
202957
|
this.tipElement = this.shadowRoot.querySelector('.current-tip');
|
|
202956
202958
|
this.loadingAnimation = this.shadowRoot.querySelector('.loading-animation');
|
|
202959
|
+
this.loadingAnimationWrapper = this.shadowRoot.querySelector('.loading-animation-wrapper'); // 새롭게 추가된 래퍼 참조
|
|
202957
202960
|
this.tipImageElement = this.shadowRoot.querySelector('.tip-image');
|
|
202958
202961
|
this.tipImageContainer = this.shadowRoot.querySelector('.tip-image-container');
|
|
202959
202962
|
}
|
|
@@ -202999,7 +203002,8 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202999
203002
|
this.showNextTip();
|
|
203000
203003
|
}, this.#tipDisplayDuration);
|
|
203001
203004
|
|
|
203002
|
-
this.loadingAnimation.style.display = 'block'; // Show the loading spinner
|
|
203005
|
+
//this.loadingAnimation.style.display = 'block'; // Show the loading spinner
|
|
203006
|
+
this.loadingAnimationWrapper.style.display = 'flex';
|
|
203003
203007
|
} catch (error) {
|
|
203004
203008
|
console.error("Error loading tips:", error);
|
|
203005
203009
|
this.stopTips(); // Stop intervals and hide animations on error
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202929,7 +202929,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202929
202929
|
|
|
202930
202930
|
|
|
202931
202931
|
.loading-animation {
|
|
202932
|
-
animation: spin 1s linear infinite;
|
|
202932
|
+
--animation: spin 1s linear infinite;
|
|
202933
202933
|
}
|
|
202934
202934
|
|
|
202935
202935
|
@keyframes spin {
|
|
@@ -202938,7 +202938,9 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202938
202938
|
}
|
|
202939
202939
|
</style>
|
|
202940
202940
|
<div class="chat-message loading-tips-message">
|
|
202941
|
-
<div class="loading-animation"
|
|
202941
|
+
<div class="loading-animation-wrapper">
|
|
202942
|
+
<div class="loading-animation"></div>
|
|
202943
|
+
</div>
|
|
202942
202944
|
<div class="tip-content">
|
|
202943
202945
|
<p class="current-tip"></p>
|
|
202944
202946
|
<div class="tip-image-container">
|
|
@@ -202950,6 +202952,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202950
202952
|
// Cache DOM element references
|
|
202951
202953
|
this.tipElement = this.shadowRoot.querySelector('.current-tip');
|
|
202952
202954
|
this.loadingAnimation = this.shadowRoot.querySelector('.loading-animation');
|
|
202955
|
+
this.loadingAnimationWrapper = this.shadowRoot.querySelector('.loading-animation-wrapper'); // 새롭게 추가된 래퍼 참조
|
|
202953
202956
|
this.tipImageElement = this.shadowRoot.querySelector('.tip-image');
|
|
202954
202957
|
this.tipImageContainer = this.shadowRoot.querySelector('.tip-image-container');
|
|
202955
202958
|
}
|
|
@@ -202995,7 +202998,8 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202995
202998
|
this.showNextTip();
|
|
202996
202999
|
}, this.#tipDisplayDuration);
|
|
202997
203000
|
|
|
202998
|
-
this.loadingAnimation.style.display = 'block'; // Show the loading spinner
|
|
203001
|
+
//this.loadingAnimation.style.display = 'block'; // Show the loading spinner
|
|
203002
|
+
this.loadingAnimationWrapper.style.display = 'flex';
|
|
202999
203003
|
} catch (error) {
|
|
203000
203004
|
console.error("Error loading tips:", error);
|
|
203001
203005
|
this.stopTips(); // Stop intervals and hide animations on error
|
|
@@ -34,7 +34,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
34
34
|
|
|
35
35
|
|
|
36
36
|
.loading-animation {
|
|
37
|
-
animation: spin 1s linear infinite;
|
|
37
|
+
--animation: spin 1s linear infinite;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
@keyframes spin {
|
|
@@ -43,7 +43,9 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
43
43
|
}
|
|
44
44
|
</style>
|
|
45
45
|
<div class="chat-message loading-tips-message">
|
|
46
|
-
<div class="loading-animation"
|
|
46
|
+
<div class="loading-animation-wrapper">
|
|
47
|
+
<div class="loading-animation"></div>
|
|
48
|
+
</div>
|
|
47
49
|
<div class="tip-content">
|
|
48
50
|
<p class="current-tip"></p>
|
|
49
51
|
<div class="tip-image-container">
|
|
@@ -55,6 +57,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
55
57
|
// Cache DOM element references
|
|
56
58
|
this.tipElement = this.shadowRoot.querySelector('.current-tip');
|
|
57
59
|
this.loadingAnimation = this.shadowRoot.querySelector('.loading-animation');
|
|
60
|
+
this.loadingAnimationWrapper = this.shadowRoot.querySelector('.loading-animation-wrapper'); // 새롭게 추가된 래퍼 참조
|
|
58
61
|
this.tipImageElement = this.shadowRoot.querySelector('.tip-image');
|
|
59
62
|
this.tipImageContainer = this.shadowRoot.querySelector('.tip-image-container');
|
|
60
63
|
}
|
|
@@ -100,7 +103,8 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
100
103
|
this.showNextTip();
|
|
101
104
|
}, this.#tipDisplayDuration);
|
|
102
105
|
|
|
103
|
-
this.loadingAnimation.style.display = 'block'; // Show the loading spinner
|
|
106
|
+
//this.loadingAnimation.style.display = 'block'; // Show the loading spinner
|
|
107
|
+
this.loadingAnimationWrapper.style.display = 'flex';
|
|
104
108
|
} catch (error) {
|
|
105
109
|
console.error("Error loading tips:", error);
|
|
106
110
|
this.stopTips(); // Stop intervals and hide animations on error
|
package/package.json
CHANGED
|
@@ -34,7 +34,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
34
34
|
|
|
35
35
|
|
|
36
36
|
.loading-animation {
|
|
37
|
-
animation: spin 1s linear infinite;
|
|
37
|
+
--animation: spin 1s linear infinite;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
@keyframes spin {
|
|
@@ -43,7 +43,9 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
43
43
|
}
|
|
44
44
|
</style>
|
|
45
45
|
<div class="chat-message loading-tips-message">
|
|
46
|
-
<div class="loading-animation"
|
|
46
|
+
<div class="loading-animation-wrapper">
|
|
47
|
+
<div class="loading-animation"></div>
|
|
48
|
+
</div>
|
|
47
49
|
<div class="tip-content">
|
|
48
50
|
<p class="current-tip"></p>
|
|
49
51
|
<div class="tip-image-container">
|
|
@@ -55,6 +57,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
55
57
|
// Cache DOM element references
|
|
56
58
|
this.tipElement = this.shadowRoot.querySelector('.current-tip');
|
|
57
59
|
this.loadingAnimation = this.shadowRoot.querySelector('.loading-animation');
|
|
60
|
+
this.loadingAnimationWrapper = this.shadowRoot.querySelector('.loading-animation-wrapper'); // 새롭게 추가된 래퍼 참조
|
|
58
61
|
this.tipImageElement = this.shadowRoot.querySelector('.tip-image');
|
|
59
62
|
this.tipImageContainer = this.shadowRoot.querySelector('.tip-image-container');
|
|
60
63
|
}
|
|
@@ -100,7 +103,8 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
100
103
|
this.showNextTip();
|
|
101
104
|
}, this.#tipDisplayDuration);
|
|
102
105
|
|
|
103
|
-
this.loadingAnimation.style.display = 'block'; // Show the loading spinner
|
|
106
|
+
//this.loadingAnimation.style.display = 'block'; // Show the loading spinner
|
|
107
|
+
this.loadingAnimationWrapper.style.display = 'flex';
|
|
104
108
|
} catch (error) {
|
|
105
109
|
console.error("Error loading tips:", error);
|
|
106
110
|
this.stopTips(); // Stop intervals and hide animations on error
|