@etsoo/react 1.5.42 → 1.5.43

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/lib/mu/RLink.js CHANGED
@@ -17,9 +17,8 @@ export const RLink = React.forwardRef((props, ref) => {
17
17
  href &&
18
18
  (!target || target === '_self') && // Let browser handle "target=_blank" etc
19
19
  globalApp) {
20
- // Cancel further processing
20
+ // Prevent href action
21
21
  event.preventDefault();
22
- event.stopPropagation();
23
22
  // Router push
24
23
  globalApp.history.push(href);
25
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/react",
3
- "version": "1.5.42",
3
+ "version": "1.5.43",
4
4
  "description": "TypeScript ReactJs framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
package/src/mu/RLink.tsx CHANGED
@@ -24,9 +24,8 @@ export const RLink = React.forwardRef<HTMLAnchorElement, LinkProps>(
24
24
  (!target || target === '_self') && // Let browser handle "target=_blank" etc
25
25
  globalApp
26
26
  ) {
27
- // Cancel further processing
27
+ // Prevent href action
28
28
  event.preventDefault();
29
- event.stopPropagation();
30
29
 
31
30
  // Router push
32
31
  globalApp.history.push(href);