Co-authored-by: Thomas Allmer <Thomas.Allmer@ing.com> Co-authored-by: Joren Broekema <Joren.Broekema@ing.com> Co-authored-by: Mikhail Bashkirov <Mikhail.Bashkirov@ing.com>
15 lines
292 B
JavaScript
15 lines
292 B
JavaScript
export const withDropdownConfig = () => ({
|
|
placementMode: 'local',
|
|
|
|
inheritsReferenceWidth: true,
|
|
hidesOnOutsideClick: true,
|
|
popperConfig: {
|
|
placement: 'bottom-start',
|
|
modifiers: {
|
|
offset: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
},
|
|
handlesAccessibility: true,
|
|
});
|