@draftbit/core 54.0.5 → 54.0.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@draftbit/core",
3
- "version": "54.0.5",
3
+ "version": "54.0.6",
4
4
  "description": "Core (non-native) Components",
5
5
  "main": "lib/commonjs/index.js",
6
6
  "types": "lib/typescript/src/index.d.ts",
@@ -42,7 +42,7 @@
42
42
  "homepage": "https://github.com/draftbit/react-native-jigsaw#readme",
43
43
  "dependencies": {
44
44
  "@draftbit/react-theme-provider": "^2.1.1",
45
- "@draftbit/theme": "54.0.5",
45
+ "@draftbit/theme": "54.0.6",
46
46
  "@emotion/react": "^11.13.5",
47
47
  "@emotion/styled": "^11.13.5",
48
48
  "@expo/vector-icons": "^15.0.3",
@@ -123,5 +123,5 @@
123
123
  ],
124
124
  "testEnvironment": "node"
125
125
  },
126
- "gitHead": "51ca63d0f063dee46a9bf62c910368c165979d34"
126
+ "gitHead": "fcbba18cc0dc8f351f84e33c2d96b789378ed6aa"
127
127
  }
@@ -136,6 +136,6 @@ export default class PortalHost extends React.Component<Props> {
136
136
  const styles = StyleSheet.create({
137
137
  container: {
138
138
  flex: 1,
139
- pointerEvents: "none",
139
+ pointerEvents: "box-none",
140
140
  },
141
141
  });
@@ -44,7 +44,7 @@ export default class PortalManager extends React.PureComponent<object, State> {
44
44
  collapsable={
45
45
  false /* Need collapsable=false here to clip the elevations, otherwise they appear above sibling components */
46
46
  }
47
- style={[StyleSheet.absoluteFill, { pointerEvents: "none" }]}
47
+ style={[StyleSheet.absoluteFill, { pointerEvents: "box-none" }]}
48
48
  >
49
49
  {children}
50
50
  </View>