ide-assi 0.552.0 → 0.553.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
|
@@ -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
|
@@ -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) {
|
|
@@ -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
|
@@ -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) {
|