ide-assi 0.581.0 → 0.583.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
|
@@ -202953,22 +202953,27 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202953
202953
|
<div class="loading-animation-wrapper">
|
|
202954
202954
|
<div class="loading-animation"></div>
|
|
202955
202955
|
</div>
|
|
202956
|
-
<div class="
|
|
202957
|
-
<
|
|
202958
|
-
|
|
202959
|
-
|
|
202960
|
-
|
|
202961
|
-
</div>
|
|
202962
|
-
</div>
|
|
202956
|
+
<div class="image-wrapper">
|
|
202957
|
+
<img class="tip-image" src="" alt="팁 관련 이미지">
|
|
202958
|
+
</div>
|
|
202959
|
+
<div class="current-tip-wrapper">
|
|
202960
|
+
<p class="current-tip"></p>
|
|
202963
202961
|
</div>
|
|
202964
202962
|
</div>
|
|
202965
202963
|
`;
|
|
202964
|
+
/**
|
|
202965
|
+
<div class="tip-content">
|
|
202966
|
+
<div class="tip-image-container">
|
|
202967
|
+
<img class="tip-image" src="" alt="팁 관련 이미지">
|
|
202968
|
+
</div>
|
|
202969
|
+
</div> */
|
|
202970
|
+
|
|
202966
202971
|
// Cache DOM element references
|
|
202967
202972
|
this.tipElement = this.shadowRoot.querySelector('.current-tip');
|
|
202968
202973
|
this.loadingAnimation = this.shadowRoot.querySelector('.loading-animation');
|
|
202969
202974
|
this.loadingAnimationWrapper = this.shadowRoot.querySelector('.loading-animation-wrapper'); // 새롭게 추가된 래퍼 참조
|
|
202970
202975
|
this.tipImageElement = this.shadowRoot.querySelector('.tip-image');
|
|
202971
|
-
this.tipImageContainer = this.shadowRoot.querySelector('.
|
|
202976
|
+
this.tipImageContainer = this.shadowRoot.querySelector('.image-wrapper');
|
|
202972
202977
|
}
|
|
202973
202978
|
|
|
202974
202979
|
disconnectedCallback() {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202949,22 +202949,27 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
202949
202949
|
<div class="loading-animation-wrapper">
|
|
202950
202950
|
<div class="loading-animation"></div>
|
|
202951
202951
|
</div>
|
|
202952
|
-
<div class="
|
|
202953
|
-
<
|
|
202954
|
-
|
|
202955
|
-
|
|
202956
|
-
|
|
202957
|
-
</div>
|
|
202958
|
-
</div>
|
|
202952
|
+
<div class="image-wrapper">
|
|
202953
|
+
<img class="tip-image" src="" alt="팁 관련 이미지">
|
|
202954
|
+
</div>
|
|
202955
|
+
<div class="current-tip-wrapper">
|
|
202956
|
+
<p class="current-tip"></p>
|
|
202959
202957
|
</div>
|
|
202960
202958
|
</div>
|
|
202961
202959
|
`;
|
|
202960
|
+
/**
|
|
202961
|
+
<div class="tip-content">
|
|
202962
|
+
<div class="tip-image-container">
|
|
202963
|
+
<img class="tip-image" src="" alt="팁 관련 이미지">
|
|
202964
|
+
</div>
|
|
202965
|
+
</div> */
|
|
202966
|
+
|
|
202962
202967
|
// Cache DOM element references
|
|
202963
202968
|
this.tipElement = this.shadowRoot.querySelector('.current-tip');
|
|
202964
202969
|
this.loadingAnimation = this.shadowRoot.querySelector('.loading-animation');
|
|
202965
202970
|
this.loadingAnimationWrapper = this.shadowRoot.querySelector('.loading-animation-wrapper'); // 새롭게 추가된 래퍼 참조
|
|
202966
202971
|
this.tipImageElement = this.shadowRoot.querySelector('.tip-image');
|
|
202967
|
-
this.tipImageContainer = this.shadowRoot.querySelector('.
|
|
202972
|
+
this.tipImageContainer = this.shadowRoot.querySelector('.image-wrapper');
|
|
202968
202973
|
}
|
|
202969
202974
|
|
|
202970
202975
|
disconnectedCallback() {
|
|
@@ -46,22 +46,27 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
46
46
|
<div class="loading-animation-wrapper">
|
|
47
47
|
<div class="loading-animation"></div>
|
|
48
48
|
</div>
|
|
49
|
-
<div class="
|
|
50
|
-
<
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
</div>
|
|
55
|
-
</div>
|
|
49
|
+
<div class="image-wrapper">
|
|
50
|
+
<img class="tip-image" src="" alt="팁 관련 이미지">
|
|
51
|
+
</div>
|
|
52
|
+
<div class="current-tip-wrapper">
|
|
53
|
+
<p class="current-tip"></p>
|
|
56
54
|
</div>
|
|
57
55
|
</div>
|
|
58
56
|
`;
|
|
57
|
+
/**
|
|
58
|
+
<div class="tip-content">
|
|
59
|
+
<div class="tip-image-container">
|
|
60
|
+
<img class="tip-image" src="" alt="팁 관련 이미지">
|
|
61
|
+
</div>
|
|
62
|
+
</div> */
|
|
63
|
+
|
|
59
64
|
// Cache DOM element references
|
|
60
65
|
this.tipElement = this.shadowRoot.querySelector('.current-tip');
|
|
61
66
|
this.loadingAnimation = this.shadowRoot.querySelector('.loading-animation');
|
|
62
67
|
this.loadingAnimationWrapper = this.shadowRoot.querySelector('.loading-animation-wrapper'); // 새롭게 추가된 래퍼 참조
|
|
63
68
|
this.tipImageElement = this.shadowRoot.querySelector('.tip-image');
|
|
64
|
-
this.tipImageContainer = this.shadowRoot.querySelector('.
|
|
69
|
+
this.tipImageContainer = this.shadowRoot.querySelector('.image-wrapper');
|
|
65
70
|
}
|
|
66
71
|
|
|
67
72
|
disconnectedCallback() {
|
package/package.json
CHANGED
|
@@ -46,22 +46,27 @@ class IdeLoadingTips extends HTMLElement {
|
|
|
46
46
|
<div class="loading-animation-wrapper">
|
|
47
47
|
<div class="loading-animation"></div>
|
|
48
48
|
</div>
|
|
49
|
-
<div class="
|
|
50
|
-
<
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
</div>
|
|
55
|
-
</div>
|
|
49
|
+
<div class="image-wrapper">
|
|
50
|
+
<img class="tip-image" src="" alt="팁 관련 이미지">
|
|
51
|
+
</div>
|
|
52
|
+
<div class="current-tip-wrapper">
|
|
53
|
+
<p class="current-tip"></p>
|
|
56
54
|
</div>
|
|
57
55
|
</div>
|
|
58
56
|
`;
|
|
57
|
+
/**
|
|
58
|
+
<div class="tip-content">
|
|
59
|
+
<div class="tip-image-container">
|
|
60
|
+
<img class="tip-image" src="" alt="팁 관련 이미지">
|
|
61
|
+
</div>
|
|
62
|
+
</div> */
|
|
63
|
+
|
|
59
64
|
// Cache DOM element references
|
|
60
65
|
this.tipElement = this.shadowRoot.querySelector('.current-tip');
|
|
61
66
|
this.loadingAnimation = this.shadowRoot.querySelector('.loading-animation');
|
|
62
67
|
this.loadingAnimationWrapper = this.shadowRoot.querySelector('.loading-animation-wrapper'); // 새롭게 추가된 래퍼 참조
|
|
63
68
|
this.tipImageElement = this.shadowRoot.querySelector('.tip-image');
|
|
64
|
-
this.tipImageContainer = this.shadowRoot.querySelector('.
|
|
69
|
+
this.tipImageContainer = this.shadowRoot.querySelector('.image-wrapper');
|
|
65
70
|
}
|
|
66
71
|
|
|
67
72
|
disconnectedCallback() {
|