15 lines
293 B
JavaScript
15 lines
293 B
JavaScript
export const withDropdownConfig = () => ({
|
|
placementMode: 'local',
|
|
|
|
inheritsReferenceWidth: 'min',
|
|
hidesOnOutsideClick: true,
|
|
popperConfig: {
|
|
placement: 'bottom-start',
|
|
modifiers: {
|
|
offset: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
},
|
|
handlesAccessibility: true,
|
|
});
|