@mxtommy/kip 3.0.0-alpha.38 → 3.0.0-alpha.39

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mxtommy/kip",
3
- "version": "3.0.0-alpha.38",
3
+ "version": "3.0.0-alpha.39",
4
4
  "description": "An advanced and versatile marine instrumentation package to display Signal K data.",
5
5
  "license": "MIT",
6
6
  "author": {
package/public/main.js CHANGED
@@ -125260,7 +125260,7 @@ var WidgetFreeboardskComponent = class _WidgetFreeboardskComponent extends BaseW
125260
125260
  triggerSwipe(direction) {
125261
125261
  const element = document.getElementById("dashboardComponent");
125262
125262
  if (element) {
125263
- const event = new Event("swipeup");
125263
+ const event = new Event("swipeup", { bubbles: true, cancelable: true });
125264
125264
  element.dispatchEvent(event);
125265
125265
  } else {
125266
125266
  console.error('Element with ID "yourElementId" not found.');