Scroll based virtual list handling while maxRenderedOptions enable for autocomplete

I’m trying to implement scroll based loading while enable maxRenderOptions becomes true. Is there any way to perform this option for autocomplete

const autocompleteConfig = {
override: [autocompleteFn],
closeOnBlur: false,
activateOnTyping: true,
maxRenderedOptions: 10,
defaultKeymap: true,
icons: false,
interactionDelay: 75,
};
autocompletion(autocompleteConfig);

Scroll-based viewporting isn’t something that the completion widget implements. maxRenderOptions (which is expected to be a lot bigger than 10) just causes a widget to appear at the bottom of the list, for moving to the next page of options.