@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 +1 -1
- package/public/main.js +1 -1
- package/public/main.js.map +1 -1
package/package.json
CHANGED
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.');
|