@festo-ui/react 11.1.0-dev.986 → 11.1.0-dev.988

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.
@@ -50,6 +50,16 @@ const Popover = /*#__PURE__*/ forwardRef(({ children, className, style, containe
50
50
  click,
51
51
  hover
52
52
  ]);
53
+ function getPopoverProps() {
54
+ return {
55
+ onClick: (e)=>{
56
+ if (stopPropagation) {
57
+ e.preventDefault();
58
+ e.stopPropagation();
59
+ }
60
+ }
61
+ };
62
+ }
53
63
  return /*#__PURE__*/ jsxs(Fragment, {
54
64
  children: [
55
65
  /*#__PURE__*/ jsx("div", {
@@ -91,6 +101,7 @@ const Popover = /*#__PURE__*/ forwardRef(({ children, className, style, containe
91
101
  }),
92
102
  /*#__PURE__*/ jsx("div", {
93
103
  className: classnames('fwe-popover', containerClassName),
104
+ ...getPopoverProps(),
94
105
  children: content
95
106
  })
96
107
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@festo-ui/react",
3
- "version": "11.1.0-dev.986",
3
+ "version": "11.1.0-dev.988",
4
4
  "author": "Festo UI (styleguide@festo.com)",
5
5
  "copyright": "Copyright (c) 2025 Festo SE & Co. KG. All rights reserved.",
6
6
  "license": "apache-2.0",