@atlaskit/dropdown-menu 11.14.2 → 11.14.3

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/dropdown-menu
2
2
 
3
+ ## 11.14.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`a54578d2ea9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a54578d2ea9) - This removes the feature flag for the `shouldRenderToParent` prop. The prop is available for use.
8
+
3
9
  ## 11.14.2
4
10
 
5
11
  ### Patch Changes
@@ -185,7 +185,7 @@ var DropdownMenu = function DropdownMenu(props) {
185
185
  fallbackPlacements: fallbackPlacements,
186
186
  testId: testId && "".concat(testId, "--content"),
187
187
  shouldUseCaptureOnOutsideClick: true,
188
- shouldRenderToParent: (0, _platformFeatureFlags.getBooleanFF)('platform.design-system-team.render-popup-in-parent_f73ij') ? shouldRenderToParent : undefined,
188
+ shouldRenderToParent: shouldRenderToParent,
189
189
  trigger: function trigger(triggerProps) {
190
190
  if (typeof _trigger === 'function') {
191
191
  var ref = triggerProps.ref,
@@ -157,7 +157,7 @@ const DropdownMenu = props => {
157
157
  fallbackPlacements: fallbackPlacements,
158
158
  testId: testId && `${testId}--content`,
159
159
  shouldUseCaptureOnOutsideClick: true,
160
- shouldRenderToParent: getBooleanFF('platform.design-system-team.render-popup-in-parent_f73ij') ? shouldRenderToParent : undefined,
160
+ shouldRenderToParent: shouldRenderToParent,
161
161
  trigger: triggerProps => {
162
162
  if (typeof trigger === 'function') {
163
163
  const {
@@ -176,7 +176,7 @@ var DropdownMenu = function DropdownMenu(props) {
176
176
  fallbackPlacements: fallbackPlacements,
177
177
  testId: testId && "".concat(testId, "--content"),
178
178
  shouldUseCaptureOnOutsideClick: true,
179
- shouldRenderToParent: getBooleanFF('platform.design-system-team.render-popup-in-parent_f73ij') ? shouldRenderToParent : undefined,
179
+ shouldRenderToParent: shouldRenderToParent,
180
180
  trigger: function trigger(triggerProps) {
181
181
  if (typeof _trigger === 'function') {
182
182
  var ref = triggerProps.ref,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/dropdown-menu",
3
- "version": "11.14.2",
3
+ "version": "11.14.3",
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/"
@@ -104,9 +104,6 @@
104
104
  "platform.design-system-team.menu-selected-state-change_0see9": {
105
105
  "type": "boolean"
106
106
  },
107
- "platform.design-system-team.render-popup-in-parent_f73ij": {
108
- "type": "boolean"
109
- },
110
107
  "platform.design-system-team.border-checkbox_nyoiu": {
111
108
  "type": "boolean"
112
109
  },