@deot/vc 1.0.56 → 1.0.57

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.
@@ -18806,6 +18806,7 @@ var Vc = (function (exports, vue) {
18806
18806
  }
18807
18807
  });
18808
18808
  };
18809
+ const handlePrevent = (e) => e.preventDefault();
18809
18810
  vue.onMounted(() => {
18810
18811
  insertStyle(buttons.value);
18811
18812
  });
@@ -18816,7 +18817,8 @@ var Vc = (function (exports, vue) {
18816
18817
  });
18817
18818
  return () => {
18818
18819
  return vue.createVNode("div", {
18819
- "id": props2.elementId
18820
+ "id": props2.elementId,
18821
+ "onClick": handlePrevent
18820
18822
  }, [renderButtonGroup(buttons.value), slots?.extend?.()]);
18821
18823
  };
18822
18824
  }
@@ -18809,6 +18809,7 @@
18809
18809
  }
18810
18810
  });
18811
18811
  };
18812
+ const handlePrevent = (e) => e.preventDefault();
18812
18813
  vue.onMounted(() => {
18813
18814
  insertStyle(buttons.value);
18814
18815
  });
@@ -18819,7 +18820,8 @@
18819
18820
  });
18820
18821
  return () => {
18821
18822
  return vue.createVNode("div", {
18822
- "id": props2.elementId
18823
+ "id": props2.elementId,
18824
+ "onClick": handlePrevent
18823
18825
  }, [renderButtonGroup(buttons.value), slots?.extend?.()]);
18824
18826
  };
18825
18827
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deot/vc",
3
- "version": "1.0.56",
3
+ "version": "1.0.57",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -19,9 +19,9 @@
19
19
  "access": "public"
20
20
  },
21
21
  "dependencies": {
22
- "@deot/vc-components": "^1.0.56",
23
- "@deot/vc-hooks": "^1.0.56",
24
- "@deot/vc-shared": "^1.0.56"
22
+ "@deot/vc-components": "^1.0.57",
23
+ "@deot/vc-hooks": "^1.0.57",
24
+ "@deot/vc-shared": "^1.0.57"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "vue": "*"