@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 +8 -0
- package/dist/types/types.d.ts +3 -3
- package/dist/types-ts4.5/types.d.ts +3 -3
- package/package.json +1 -1
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
|
package/dist/types/types.d.ts
CHANGED
|
@@ -117,9 +117,9 @@ interface InternalDropdownMenuProps<TriggerElement extends HTMLElement = any> {
|
|
|
117
117
|
*/
|
|
118
118
|
shouldFlip?: boolean;
|
|
119
119
|
/**
|
|
120
|
-
*
|
|
121
|
-
* `true` renders the dropdown menu in the DOM node closest to the trigger
|
|
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
|
-
*
|
|
121
|
-
* `true` renders the dropdown menu in the DOM node closest to the trigger
|
|
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;
|