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.
@@ -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) {
@@ -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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.552.0",
4
+ "version": "0.553.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -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) {