@tecsinapse/cortex-react 1.9.39 → 1.9.40

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.
@@ -11,7 +11,10 @@ const SelectPopover = ({ children }) => {
11
11
  index.Popover.Content,
12
12
  {
13
13
  className: "bg-white max-h-[30vh] overflow-y-scroll gap-y-mili flex flex-col p-0",
14
- style: { width: triggerWidth ? `${triggerWidth}px` : "auto" }
14
+ style: {
15
+ width: triggerWidth ? `${triggerWidth}px` : "auto",
16
+ zIndex: 9999
17
+ }
15
18
  },
16
19
  children
17
20
  ));
@@ -9,7 +9,10 @@ const SelectPopover = ({ children }) => {
9
9
  Popover.Content,
10
10
  {
11
11
  className: "bg-white max-h-[30vh] overflow-y-scroll gap-y-mili flex flex-col p-0",
12
- style: { width: triggerWidth ? `${triggerWidth}px` : "auto" }
12
+ style: {
13
+ width: triggerWidth ? `${triggerWidth}px` : "auto",
14
+ zIndex: 9999
15
+ }
13
16
  },
14
17
  children
15
18
  ));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tecsinapse/cortex-react",
3
- "version": "1.9.39",
3
+ "version": "1.9.40",
4
4
  "description": "React components based in @tecsinapse/cortex-core",
5
5
  "license": "MIT",
6
6
  "main": "dist/esm/index.js",
@@ -48,5 +48,5 @@
48
48
  "react-dom": ">=18.0.0",
49
49
  "tailwind": ">=3.3.0"
50
50
  },
51
- "gitHead": "8e87d624980229eded12c32dd100d927dc8d78c9"
51
+ "gitHead": "1842d0748c989af59ed462dea1a68b85230c03af"
52
52
  }