Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ This is a major release, and it might be not compatible with your current usage
- beside explicitly specified properties it allows only basic HTML element properties and testing IDs
- overrite the native SCSS `rgba()` function, so it now works for SCSS color values and CSS custom properties
- `getColorConfiguration()` works with CSS custom properties
- `<SuggestField />`
- Always add class 'nodrag' to popover content element to always prevent dragging of react-flow and dnd-kit elements when interacting with the component.

### Deprecated

Expand Down
1 change: 1 addition & 0 deletions src/components/AutocompleteField/AutoCompleteField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,7 @@ export function SuggestField<T, UPDATE_VALUE>(props: SuggestFieldProps<T, UPDATE
query={query}
// This leads to odd compile errors without "as any"
popoverProps={updatedContextOverlayProps as any}
popoverContentProps={{className: "nodrag"}}
selectedItem={selectedItem}
fill={fill}
{...createNewItemProps}
Expand Down