@edux-design/popovers 1.0.0 → 1.0.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @edux-design/popovers
2
2
 
3
+ ## 1.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Minor token updates
8
+
9
+ ## 1.0.1
10
+
11
+ ### Patch Changes
12
+
13
+ - Minor fixes for sizes/z-indexes
14
+
3
15
  ## 1.0.0
4
16
 
5
17
  ### Patch Changes
package/dist/index.js CHANGED
@@ -81,7 +81,7 @@ var PopoverContent = (0, import_react.forwardRef)(
81
81
  avoidCollisions,
82
82
  forceMount,
83
83
  className: (0, import_utils.cx)(positioning, className, "relative"),
84
- style,
84
+ style: { zIndex: 2147483647, ...style },
85
85
  ...contentProps,
86
86
  ...restProps
87
87
  },
package/dist/index.mjs CHANGED
@@ -40,7 +40,7 @@ var PopoverContent = forwardRef(
40
40
  avoidCollisions,
41
41
  forceMount,
42
42
  className: cx(positioning, className, "relative"),
43
- style,
43
+ style: { zIndex: 2147483647, ...style },
44
44
  ...contentProps,
45
45
  ...restProps
46
46
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edux-design/popovers",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "private": false,
5
5
  "sideEffects": [
6
6
  "**/*.css"
@@ -137,7 +137,7 @@ export const PopoverContent = forwardRef(
137
137
  avoidCollisions={avoidCollisions}
138
138
  forceMount={forceMount}
139
139
  className={cx(positioning, className, "relative")}
140
- style={style}
140
+ style={{ zIndex: 2147483647, ...style }}
141
141
  {...contentProps}
142
142
  {...restProps}
143
143
  >