rivia 0.0.47 → 0.0.49

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.
Files changed (2) hide show
  1. package/dist/index.js +8 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -4104,6 +4104,14 @@ var triggerEvent = async (message) => {
4104
4104
  transition: "opacity 0.5s ease"
4105
4105
  });
4106
4106
  document.body.appendChild(label2);
4107
+ console.log("label2");
4108
+ requestAnimationFrame(() => {
4109
+ label2.style.opacity = 1;
4110
+ });
4111
+ setTimeout(() => {
4112
+ label2.style.opacity = 0;
4113
+ setTimeout(() => label2.remove(), 500);
4114
+ }, 3e3);
4107
4115
  };
4108
4116
  }
4109
4117
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rivia",
3
- "version": "0.0.47",
3
+ "version": "0.0.49",
4
4
  "type": "module",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",