gd-bs 6.6.51 → 6.6.52

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": "gd-bs",
3
- "version": "6.6.51",
3
+ "version": "6.6.52",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -59,7 +59,7 @@ class _Card extends Base<ICardProps> implements ICard {
59
59
  // Set the click event
60
60
  body.el.addEventListener("click", ev => {
61
61
  // Execute the event
62
- this.props.onClick(body.props);
62
+ this.props.onClick(body.props, ev);
63
63
  });
64
64
  }
65
65