@tamagui/popover 1.124.5 → 1.124.7

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.
Files changed (2) hide show
  1. package/package.json +20 -20
  2. package/src/Popover.tsx +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/popover",
3
- "version": "1.124.5",
3
+ "version": "1.124.7",
4
4
  "sideEffects": [
5
5
  "*.css"
6
6
  ],
@@ -37,31 +37,31 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@floating-ui/react": "^0.27.3",
40
- "@tamagui/adapt": "1.124.5",
41
- "@tamagui/animate": "1.124.5",
42
- "@tamagui/aria-hidden": "1.124.5",
43
- "@tamagui/compose-refs": "1.124.5",
44
- "@tamagui/constants": "1.124.5",
45
- "@tamagui/core": "1.124.5",
46
- "@tamagui/dismissable": "1.124.5",
47
- "@tamagui/floating": "1.124.5",
48
- "@tamagui/focus-scope": "1.124.5",
49
- "@tamagui/helpers": "1.124.5",
50
- "@tamagui/polyfill-dev": "1.124.5",
51
- "@tamagui/popper": "1.124.5",
52
- "@tamagui/portal": "1.124.5",
53
- "@tamagui/remove-scroll": "1.124.5",
54
- "@tamagui/scroll-view": "1.124.5",
55
- "@tamagui/sheet": "1.124.5",
56
- "@tamagui/stacks": "1.124.5",
57
- "@tamagui/use-controllable-state": "1.124.5",
40
+ "@tamagui/adapt": "1.124.7",
41
+ "@tamagui/animate": "1.124.7",
42
+ "@tamagui/aria-hidden": "1.124.7",
43
+ "@tamagui/compose-refs": "1.124.7",
44
+ "@tamagui/constants": "1.124.7",
45
+ "@tamagui/core": "1.124.7",
46
+ "@tamagui/dismissable": "1.124.7",
47
+ "@tamagui/floating": "1.124.7",
48
+ "@tamagui/focus-scope": "1.124.7",
49
+ "@tamagui/helpers": "1.124.7",
50
+ "@tamagui/polyfill-dev": "1.124.7",
51
+ "@tamagui/popper": "1.124.7",
52
+ "@tamagui/portal": "1.124.7",
53
+ "@tamagui/remove-scroll": "1.124.7",
54
+ "@tamagui/scroll-view": "1.124.7",
55
+ "@tamagui/sheet": "1.124.7",
56
+ "@tamagui/stacks": "1.124.7",
57
+ "@tamagui/use-controllable-state": "1.124.7",
58
58
  "react-freeze": "^1.0.3"
59
59
  },
60
60
  "peerDependencies": {
61
61
  "react": "*"
62
62
  },
63
63
  "devDependencies": {
64
- "@tamagui/build": "1.124.5",
64
+ "@tamagui/build": "1.124.7",
65
65
  "react": "*",
66
66
  "react-native": "^0.76.5"
67
67
  },
package/src/Popover.tsx CHANGED
@@ -251,7 +251,7 @@ export const PopoverContent = PopperContentFrame.extractable(
251
251
 
252
252
  return (
253
253
  <PopoverContentPortal __scopePopover={__scopePopover} zIndex={props.zIndex}>
254
- <Stack pointerEvents={context.open ? 'auto' : 'none'}>
254
+ <Stack {...(!context.open && { pointerEvents: 'none' })}>
255
255
  <PopoverContentImpl
256
256
  {...contentImplProps}
257
257
  disableRemoveScroll={disableRemoveScroll}