@atlaskit/portal 5.1.6 → 5.1.8

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,19 @@
1
1
  # @atlaskit/portal
2
2
 
3
+ ## 5.1.8
4
+
5
+ ### Patch Changes
6
+
7
+ - [`042005250a589`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/042005250a589) -
8
+ Typescript fixes
9
+
10
+ ## 5.1.7
11
+
12
+ ### Patch Changes
13
+
14
+ - [`248faa32d4835`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/248faa32d4835) -
15
+ Internal changes to how borders are applied.
16
+
3
17
  ## 5.1.6
4
18
 
5
19
  ### Patch Changes
@@ -73,6 +73,7 @@ var createAtlaskitPortal = exports.createAtlaskitPortal = function createAtlaski
73
73
  atlaskitportal.style.zIndex = "".concat(zIndex);
74
74
  return atlaskitportal;
75
75
  }
76
+ return;
76
77
  };
77
78
  var createPortalParent = exports.createPortalParent = function createPortalParent() {
78
79
  //atlaskit-portal-container div
@@ -88,4 +89,5 @@ var createPortalParent = exports.createPortalParent = function createPortalParen
88
89
  }
89
90
  return parentElement;
90
91
  }
92
+ return;
91
93
  };
@@ -68,6 +68,7 @@ export const createAtlaskitPortal = zIndex => {
68
68
  atlaskitportal.style.zIndex = `${zIndex}`;
69
69
  return atlaskitportal;
70
70
  }
71
+ return;
71
72
  };
72
73
  export const createPortalParent = () => {
73
74
  //atlaskit-portal-container div
@@ -83,4 +84,5 @@ export const createPortalParent = () => {
83
84
  }
84
85
  return parentElement;
85
86
  }
87
+ return;
86
88
  };
@@ -68,6 +68,7 @@ export var createAtlaskitPortal = function createAtlaskitPortal(zIndex) {
68
68
  atlaskitportal.style.zIndex = "".concat(zIndex);
69
69
  return atlaskitportal;
70
70
  }
71
+ return;
71
72
  };
72
73
  export var createPortalParent = function createPortalParent() {
73
74
  //atlaskit-portal-container div
@@ -83,4 +84,5 @@ export var createPortalParent = function createPortalParent() {
83
84
  }
84
85
  return parentElement;
85
86
  }
87
+ return;
86
88
  };
package/offerings.json ADDED
@@ -0,0 +1,33 @@
1
+ [
2
+ {
3
+ "name": "Portal",
4
+ "package": "@atlaskit/portal",
5
+ "import": {
6
+ "name": "Portal",
7
+ "package": "@atlaskit/portal",
8
+ "type": "default"
9
+ },
10
+ "keywords": ["portal", "render", "dom", "mount", "teleport"],
11
+ "categories": ["utility"],
12
+ "shortDescription": "A component for rendering content outside the normal DOM hierarchy.",
13
+ "status": "general-availability",
14
+ "accessibilityGuidelines": [
15
+ "Ensure proper focus management",
16
+ "Consider screen reader accessibility",
17
+ "Use appropriate ARIA attributes",
18
+ "Handle keyboard navigation"
19
+ ],
20
+ "usageGuidelines": [
21
+ "Use for rendering content outside normal DOM",
22
+ "Consider z-index and positioning",
23
+ "Handle focus management appropriately",
24
+ "Use for modals and overlays"
25
+ ],
26
+ "contentGuidelines": [
27
+ "Ensure portaled content is accessible",
28
+ "Consider content context and purpose",
29
+ "Use appropriate portal placement"
30
+ ],
31
+ "examples": ["./examples/ai/portal.tsx"]
32
+ }
33
+ ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/portal",
3
- "version": "5.1.6",
3
+ "version": "5.1.8",
4
4
  "description": "A wrapper for rendering components in React portals.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -47,15 +47,15 @@
47
47
  "@atlaskit/button": "^23.4.0",
48
48
  "@atlaskit/code": "^17.2.0",
49
49
  "@atlaskit/css": "^0.14.0",
50
- "@atlaskit/docs": "^11.0.0",
51
- "@atlaskit/ds-lib": "^5.0.0",
50
+ "@atlaskit/docs": "^11.1.0",
51
+ "@atlaskit/ds-lib": "^5.1.0",
52
52
  "@atlaskit/flag": "^17.4.0",
53
- "@atlaskit/icon": "^28.1.0",
53
+ "@atlaskit/icon": "^28.2.0",
54
54
  "@atlaskit/inline-dialog": "^18.0.0",
55
55
  "@atlaskit/link": "^3.2.0",
56
56
  "@atlaskit/modal-dialog": "^14.3.0",
57
57
  "@atlaskit/onboarding": "^14.4.0",
58
- "@atlaskit/primitives": "^14.14.0",
58
+ "@atlaskit/primitives": "^14.15.0",
59
59
  "@atlaskit/section-message": "^8.7.0",
60
60
  "@atlaskit/ssr": "workspace:^",
61
61
  "@atlaskit/tokens": "^6.3.0",