ide-assi 0.586.0 → 0.587.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
|
@@ -202950,8 +202950,8 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202950
202950
|
}
|
|
202951
202951
|
</style>
|
|
202952
202952
|
<div class="chat-message loading-tips-message">
|
|
202953
|
-
<div class="loading-
|
|
202954
|
-
|
|
202953
|
+
<div class="loading-bar-wrapper">
|
|
202954
|
+
<div class="loading-bar"></div>
|
|
202955
202955
|
</div>
|
|
202956
202956
|
<div class="tip-content">
|
|
202957
202957
|
<div class="tip-image-container">
|
|
@@ -202964,6 +202964,12 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202964
202964
|
</div>
|
|
202965
202965
|
`;
|
|
202966
202966
|
|
|
202967
|
+
/**
|
|
202968
|
+
* <div class="loading-animation-wrapper">
|
|
202969
|
+
* <div class="loading-animation"></div>
|
|
202970
|
+
* </div>
|
|
202971
|
+
* @type {Element}
|
|
202972
|
+
*/
|
|
202967
202973
|
// Cache DOM element references
|
|
202968
202974
|
this.tipElement = this.shadowRoot.querySelector('.current-tip');
|
|
202969
202975
|
this.loadingAnimation = this.shadowRoot.querySelector('.loading-animation');
|
|
@@ -203015,7 +203021,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
203015
203021
|
}, this.#tipDisplayDuration);
|
|
203016
203022
|
|
|
203017
203023
|
//this.loadingAnimation.style.display = 'block'; // Show the loading spinner
|
|
203018
|
-
this.loadingAnimationWrapper.style.display = 'flex';
|
|
203024
|
+
//this.loadingAnimationWrapper.style.display = 'flex';
|
|
203019
203025
|
} catch (error) {
|
|
203020
203026
|
console.error("Error loading tips:", error);
|
|
203021
203027
|
this.stopTips(); // Stop intervals and hide animations on error
|
|
@@ -203037,7 +203043,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
203037
203043
|
clearInterval(this.#imageIntervalId);
|
|
203038
203044
|
this.#imageIntervalId = null;
|
|
203039
203045
|
}
|
|
203040
|
-
this.loadingAnimationWrapper.style.display = 'none';
|
|
203046
|
+
//this.loadingAnimationWrapper.style.display = 'none';
|
|
203041
203047
|
this.tipImageElement.style.display = 'none'; // Hide image
|
|
203042
203048
|
this.tipImageElement.src = ''; // Clear image source
|
|
203043
203049
|
this.tipImageContainer.style.display = 'none'; // Hide image container
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202946,8 +202946,8 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202946
202946
|
}
|
|
202947
202947
|
</style>
|
|
202948
202948
|
<div class="chat-message loading-tips-message">
|
|
202949
|
-
<div class="loading-
|
|
202950
|
-
|
|
202949
|
+
<div class="loading-bar-wrapper">
|
|
202950
|
+
<div class="loading-bar"></div>
|
|
202951
202951
|
</div>
|
|
202952
202952
|
<div class="tip-content">
|
|
202953
202953
|
<div class="tip-image-container">
|
|
@@ -202960,6 +202960,12 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202960
202960
|
</div>
|
|
202961
202961
|
`;
|
|
202962
202962
|
|
|
202963
|
+
/**
|
|
202964
|
+
* <div class="loading-animation-wrapper">
|
|
202965
|
+
* <div class="loading-animation"></div>
|
|
202966
|
+
* </div>
|
|
202967
|
+
* @type {Element}
|
|
202968
|
+
*/
|
|
202963
202969
|
// Cache DOM element references
|
|
202964
202970
|
this.tipElement = this.shadowRoot.querySelector('.current-tip');
|
|
202965
202971
|
this.loadingAnimation = this.shadowRoot.querySelector('.loading-animation');
|
|
@@ -203011,7 +203017,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
203011
203017
|
}, this.#tipDisplayDuration);
|
|
203012
203018
|
|
|
203013
203019
|
//this.loadingAnimation.style.display = 'block'; // Show the loading spinner
|
|
203014
|
-
this.loadingAnimationWrapper.style.display = 'flex';
|
|
203020
|
+
//this.loadingAnimationWrapper.style.display = 'flex';
|
|
203015
203021
|
} catch (error) {
|
|
203016
203022
|
console.error("Error loading tips:", error);
|
|
203017
203023
|
this.stopTips(); // Stop intervals and hide animations on error
|
|
@@ -203033,7 +203039,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
203033
203039
|
clearInterval(this.#imageIntervalId);
|
|
203034
203040
|
this.#imageIntervalId = null;
|
|
203035
203041
|
}
|
|
203036
|
-
this.loadingAnimationWrapper.style.display = 'none';
|
|
203042
|
+
//this.loadingAnimationWrapper.style.display = 'none';
|
|
203037
203043
|
this.tipImageElement.style.display = 'none'; // Hide image
|
|
203038
203044
|
this.tipImageElement.src = ''; // Clear image source
|
|
203039
203045
|
this.tipImageContainer.style.display = 'none'; // Hide image container
|
|
@@ -43,8 +43,8 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
43
43
|
}
|
|
44
44
|
</style>
|
|
45
45
|
<div class="chat-message loading-tips-message">
|
|
46
|
-
<div class="loading-
|
|
47
|
-
|
|
46
|
+
<div class="loading-bar-wrapper">
|
|
47
|
+
<div class="loading-bar"></div>
|
|
48
48
|
</div>
|
|
49
49
|
<div class="tip-content">
|
|
50
50
|
<div class="tip-image-container">
|
|
@@ -57,6 +57,12 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
57
57
|
</div>
|
|
58
58
|
`;
|
|
59
59
|
|
|
60
|
+
/**
|
|
61
|
+
* <div class="loading-animation-wrapper">
|
|
62
|
+
* <div class="loading-animation"></div>
|
|
63
|
+
* </div>
|
|
64
|
+
* @type {Element}
|
|
65
|
+
*/
|
|
60
66
|
// Cache DOM element references
|
|
61
67
|
this.tipElement = this.shadowRoot.querySelector('.current-tip');
|
|
62
68
|
this.loadingAnimation = this.shadowRoot.querySelector('.loading-animation');
|
|
@@ -108,7 +114,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
108
114
|
}, this.#tipDisplayDuration);
|
|
109
115
|
|
|
110
116
|
//this.loadingAnimation.style.display = 'block'; // Show the loading spinner
|
|
111
|
-
this.loadingAnimationWrapper.style.display = 'flex';
|
|
117
|
+
//this.loadingAnimationWrapper.style.display = 'flex';
|
|
112
118
|
} catch (error) {
|
|
113
119
|
console.error("Error loading tips:", error);
|
|
114
120
|
this.stopTips(); // Stop intervals and hide animations on error
|
|
@@ -130,7 +136,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
130
136
|
clearInterval(this.#imageIntervalId);
|
|
131
137
|
this.#imageIntervalId = null;
|
|
132
138
|
}
|
|
133
|
-
this.loadingAnimationWrapper.style.display = 'none';
|
|
139
|
+
//this.loadingAnimationWrapper.style.display = 'none';
|
|
134
140
|
this.tipImageElement.style.display = 'none'; // Hide image
|
|
135
141
|
this.tipImageElement.src = ''; // Clear image source
|
|
136
142
|
this.tipImageContainer.style.display = 'none'; // Hide image container
|
package/package.json
CHANGED
|
@@ -43,8 +43,8 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
43
43
|
}
|
|
44
44
|
</style>
|
|
45
45
|
<div class="chat-message loading-tips-message">
|
|
46
|
-
<div class="loading-
|
|
47
|
-
|
|
46
|
+
<div class="loading-bar-wrapper">
|
|
47
|
+
<div class="loading-bar"></div>
|
|
48
48
|
</div>
|
|
49
49
|
<div class="tip-content">
|
|
50
50
|
<div class="tip-image-container">
|
|
@@ -57,6 +57,12 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
57
57
|
</div>
|
|
58
58
|
`;
|
|
59
59
|
|
|
60
|
+
/**
|
|
61
|
+
* <div class="loading-animation-wrapper">
|
|
62
|
+
* <div class="loading-animation"></div>
|
|
63
|
+
* </div>
|
|
64
|
+
* @type {Element}
|
|
65
|
+
*/
|
|
60
66
|
// Cache DOM element references
|
|
61
67
|
this.tipElement = this.shadowRoot.querySelector('.current-tip');
|
|
62
68
|
this.loadingAnimation = this.shadowRoot.querySelector('.loading-animation');
|
|
@@ -108,7 +114,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
108
114
|
}, this.#tipDisplayDuration);
|
|
109
115
|
|
|
110
116
|
//this.loadingAnimation.style.display = 'block'; // Show the loading spinner
|
|
111
|
-
this.loadingAnimationWrapper.style.display = 'flex';
|
|
117
|
+
//this.loadingAnimationWrapper.style.display = 'flex';
|
|
112
118
|
} catch (error) {
|
|
113
119
|
console.error("Error loading tips:", error);
|
|
114
120
|
this.stopTips(); // Stop intervals and hide animations on error
|
|
@@ -130,7 +136,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
130
136
|
clearInterval(this.#imageIntervalId);
|
|
131
137
|
this.#imageIntervalId = null;
|
|
132
138
|
}
|
|
133
|
-
this.loadingAnimationWrapper.style.display = 'none';
|
|
139
|
+
//this.loadingAnimationWrapper.style.display = 'none';
|
|
134
140
|
this.tipImageElement.style.display = 'none'; // Hide image
|
|
135
141
|
this.tipImageElement.src = ''; // Clear image source
|
|
136
142
|
this.tipImageContainer.style.display = 'none'; // Hide image container
|