@atlaskit/dropdown-menu 16.3.6 → 16.3.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @atlaskit/dropdown-menu
2
2
 
3
+ ## 16.3.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [`de6195f7484ce`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/de6195f7484ce) -
8
+ Update prop descriptions to reduce confusion
9
+ - Updated dependencies
10
+
3
11
  ## 16.3.6
4
12
 
5
13
  ### Patch Changes
@@ -117,9 +117,9 @@ interface InternalDropdownMenuProps<TriggerElement extends HTMLElement = any> {
117
117
  */
118
118
  shouldFlip?: boolean;
119
119
  /**
120
- * The root element where the dropdown menu content should be rendered.
121
- * `true` renders the dropdown menu in the DOM node closest to the trigger and avoids focus trap with tab keys.
122
- * `false` renders the dropdown menu in React.Portal.
120
+ * Controls whether the popup is rendered inline within its parent component or in a portal at the document root.
121
+ * `true` renders the dropdown menu in the DOM node closest to the trigger; focus is not trapped inside the element.
122
+ * `false` renders the dropdown menu in React.Portal and focus is trapped inside the element.
123
123
  * Defaults to `false`.
124
124
  */
125
125
  shouldRenderToParent?: boolean;
@@ -117,9 +117,9 @@ interface InternalDropdownMenuProps<TriggerElement extends HTMLElement = any> {
117
117
  */
118
118
  shouldFlip?: boolean;
119
119
  /**
120
- * The root element where the dropdown menu content should be rendered.
121
- * `true` renders the dropdown menu in the DOM node closest to the trigger and avoids focus trap with tab keys.
122
- * `false` renders the dropdown menu in React.Portal.
120
+ * Controls whether the popup is rendered inline within its parent component or in a portal at the document root.
121
+ * `true` renders the dropdown menu in the DOM node closest to the trigger; focus is not trapped inside the element.
122
+ * `false` renders the dropdown menu in React.Portal and focus is trapped inside the element.
123
123
  * Defaults to `false`.
124
124
  */
125
125
  shouldRenderToParent?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/dropdown-menu",
3
- "version": "16.3.6",
3
+ "version": "16.3.7",
4
4
  "description": "A dropdown menu displays a list of actions or options to a user.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"