ide-assi 0.546.0 → 0.548.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
|
@@ -202956,6 +202956,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202956
202956
|
// Cache DOM element references
|
|
202957
202957
|
this.tipElement = this.shadowRoot.querySelector('.current-tip');
|
|
202958
202958
|
this.loadingAnimation = this.shadowRoot.querySelector('.loading-animation');
|
|
202959
|
+
this.loadingAnimationWrapper = this.shadowRoot.querySelector('.loading-animation-wrapper'); // 새롭게 추가된 래퍼 참조
|
|
202959
202960
|
this.tipImageElement = this.shadowRoot.querySelector('.tip-image');
|
|
202960
202961
|
this.tipImageContainer = this.shadowRoot.querySelector('.tip-image-container');
|
|
202961
202962
|
}
|
|
@@ -203001,7 +203002,8 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
203001
203002
|
this.showNextTip();
|
|
203002
203003
|
}, this.#tipDisplayDuration);
|
|
203003
203004
|
|
|
203004
|
-
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';
|
|
203005
203007
|
} catch (error) {
|
|
203006
203008
|
console.error("Error loading tips:", error);
|
|
203007
203009
|
this.stopTips(); // Stop intervals and hide animations on error
|
|
@@ -203023,7 +203025,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
203023
203025
|
clearInterval(this.#imageIntervalId);
|
|
203024
203026
|
this.#imageIntervalId = null;
|
|
203025
203027
|
}
|
|
203026
|
-
this.
|
|
203028
|
+
this.loadingAnimationWrapper.style.display = 'none';
|
|
203027
203029
|
this.tipImageElement.style.display = 'none'; // Hide image
|
|
203028
203030
|
this.tipImageElement.src = ''; // Clear image source
|
|
203029
203031
|
this.tipImageContainer.style.display = 'none'; // Hide image container
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202952,6 +202952,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202952
202952
|
// Cache DOM element references
|
|
202953
202953
|
this.tipElement = this.shadowRoot.querySelector('.current-tip');
|
|
202954
202954
|
this.loadingAnimation = this.shadowRoot.querySelector('.loading-animation');
|
|
202955
|
+
this.loadingAnimationWrapper = this.shadowRoot.querySelector('.loading-animation-wrapper'); // 새롭게 추가된 래퍼 참조
|
|
202955
202956
|
this.tipImageElement = this.shadowRoot.querySelector('.tip-image');
|
|
202956
202957
|
this.tipImageContainer = this.shadowRoot.querySelector('.tip-image-container');
|
|
202957
202958
|
}
|
|
@@ -202997,7 +202998,8 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202997
202998
|
this.showNextTip();
|
|
202998
202999
|
}, this.#tipDisplayDuration);
|
|
202999
203000
|
|
|
203000
|
-
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';
|
|
203001
203003
|
} catch (error) {
|
|
203002
203004
|
console.error("Error loading tips:", error);
|
|
203003
203005
|
this.stopTips(); // Stop intervals and hide animations on error
|
|
@@ -203019,7 +203021,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
203019
203021
|
clearInterval(this.#imageIntervalId);
|
|
203020
203022
|
this.#imageIntervalId = null;
|
|
203021
203023
|
}
|
|
203022
|
-
this.
|
|
203024
|
+
this.loadingAnimationWrapper.style.display = 'none';
|
|
203023
203025
|
this.tipImageElement.style.display = 'none'; // Hide image
|
|
203024
203026
|
this.tipImageElement.src = ''; // Clear image source
|
|
203025
203027
|
this.tipImageContainer.style.display = 'none'; // Hide image container
|
|
@@ -57,6 +57,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
57
57
|
// Cache DOM element references
|
|
58
58
|
this.tipElement = this.shadowRoot.querySelector('.current-tip');
|
|
59
59
|
this.loadingAnimation = this.shadowRoot.querySelector('.loading-animation');
|
|
60
|
+
this.loadingAnimationWrapper = this.shadowRoot.querySelector('.loading-animation-wrapper'); // 새롭게 추가된 래퍼 참조
|
|
60
61
|
this.tipImageElement = this.shadowRoot.querySelector('.tip-image');
|
|
61
62
|
this.tipImageContainer = this.shadowRoot.querySelector('.tip-image-container');
|
|
62
63
|
}
|
|
@@ -102,7 +103,8 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
102
103
|
this.showNextTip();
|
|
103
104
|
}, this.#tipDisplayDuration);
|
|
104
105
|
|
|
105
|
-
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';
|
|
106
108
|
} catch (error) {
|
|
107
109
|
console.error("Error loading tips:", error);
|
|
108
110
|
this.stopTips(); // Stop intervals and hide animations on error
|
|
@@ -124,7 +126,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
124
126
|
clearInterval(this.#imageIntervalId);
|
|
125
127
|
this.#imageIntervalId = null;
|
|
126
128
|
}
|
|
127
|
-
this.
|
|
129
|
+
this.loadingAnimationWrapper.style.display = 'none';
|
|
128
130
|
this.tipImageElement.style.display = 'none'; // Hide image
|
|
129
131
|
this.tipImageElement.src = ''; // Clear image source
|
|
130
132
|
this.tipImageContainer.style.display = 'none'; // Hide image container
|
package/package.json
CHANGED
|
@@ -57,6 +57,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
57
57
|
// Cache DOM element references
|
|
58
58
|
this.tipElement = this.shadowRoot.querySelector('.current-tip');
|
|
59
59
|
this.loadingAnimation = this.shadowRoot.querySelector('.loading-animation');
|
|
60
|
+
this.loadingAnimationWrapper = this.shadowRoot.querySelector('.loading-animation-wrapper'); // 새롭게 추가된 래퍼 참조
|
|
60
61
|
this.tipImageElement = this.shadowRoot.querySelector('.tip-image');
|
|
61
62
|
this.tipImageContainer = this.shadowRoot.querySelector('.tip-image-container');
|
|
62
63
|
}
|
|
@@ -102,7 +103,8 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
102
103
|
this.showNextTip();
|
|
103
104
|
}, this.#tipDisplayDuration);
|
|
104
105
|
|
|
105
|
-
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';
|
|
106
108
|
} catch (error) {
|
|
107
109
|
console.error("Error loading tips:", error);
|
|
108
110
|
this.stopTips(); // Stop intervals and hide animations on error
|
|
@@ -124,7 +126,7 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
124
126
|
clearInterval(this.#imageIntervalId);
|
|
125
127
|
this.#imageIntervalId = null;
|
|
126
128
|
}
|
|
127
|
-
this.
|
|
129
|
+
this.loadingAnimationWrapper.style.display = 'none';
|
|
128
130
|
this.tipImageElement.style.display = 'none'; // Hide image
|
|
129
131
|
this.tipImageElement.src = ''; // Clear image source
|
|
130
132
|
this.tipImageContainer.style.display = 'none'; // Hide image container
|