@onesy/ui-react 1.0.19 → 1.0.21

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.
@@ -0,0 +1 @@
1
+ export { default } from './Whiteboard';
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.default = void 0;
7
+ var Whiteboard_1 = require("./Whiteboard");
8
+ Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(Whiteboard_1).default; } });
@@ -0,0 +1,6 @@
1
+ {
2
+ "sideEffects": false,
3
+ "main": "./index.js",
4
+ "module": "../esm/Whiteboard/index.js",
5
+ "types": "./index.d.ts"
6
+ }
@@ -451,7 +451,6 @@ const Tooltip = /*#__PURE__*/React.forwardRef((props_, ref) => {
451
451
  onMouseMove
452
452
  }, click && {
453
453
  onClick: event => {
454
- event.stopPropagation();
455
454
  if (is('function', children?.props?.onClick)) children?.props?.onClick(event);
456
455
  onClick(event);
457
456
  }