@atlaskit/portal 4.11.1 → 4.11.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,11 @@
1
1
  # @atlaskit/portal
2
2
 
3
+ ## 4.11.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 4.11.1
4
10
 
5
11
  ### Patch Changes
@@ -1,3 +1,3 @@
1
- /// <reference types="react" />
1
+ import React from 'react';
2
2
  import type { PortalProps } from './types';
3
- export default function Portal({ zIndex, children, mountStrategy }: PortalProps): JSX.Element | null;
3
+ export default function Portal({ zIndex, children, mountStrategy }: PortalProps): React.JSX.Element | null;
@@ -1,3 +1,3 @@
1
- /// <reference types="react" />
1
+ import React from 'react';
2
2
  import type { PortalProps } from './types';
3
- export default function Portal({ zIndex, children, mountStrategy }: PortalProps): JSX.Element | null;
3
+ export default function Portal({ zIndex, children, mountStrategy }: PortalProps): React.JSX.Element | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/portal",
3
- "version": "4.11.1",
3
+ "version": "4.11.2",
4
4
  "description": "A wrapper for rendering components in React portals.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "@atlaskit/platform-feature-flags": "^1.0.0",
41
- "@atlaskit/theme": "^14.1.0",
41
+ "@atlaskit/theme": "^15.0.0",
42
42
  "@babel/runtime": "^7.0.0"
43
43
  },
44
44
  "peerDependencies": {