I am working on some updates on one of my Nodes.
I have created a list of options for my type.
Nodes.push({
value: `ZWJS-LOC:${location}`,
label: `${location.toUpperCase()}`,
});
const input = $('#node-input-filteredNodeId');
input.typedInput({
type: 'nodes',
types: [{
value: 'nodes',
multiple: true,
options: Nodes,
}]
});
I have a need to create separators.
Now, I am managing this with some very hacky methods (I am not happy with my self)
so, I'll ask:
is there a native way to do this with typedInput using a custom list of options.
- I,e using some type of
optgroupsupport?
I couldn't see anything in docs, but understand this can sometimes be outdated

