six-webcomponents
six-webcomponents copied to clipboard
six-select support for any object as value
What problem does this feature solve?
In our project we use the Angular Form Control to save user input which he selects in a six-select. Unfortunately the six-select currently only supports string/string[] as value input. So we only can save string/string[] in our FormControl. If the six-select would take any object type as value we could save us some parsing and could save the selection directly as typed objects.
What does the proposed API look like?
instead of
value | value | The value of the control. This will be a string or an array depending on multiple. | string | string[] | '' |
---|
value | value | The value of the control. This will be a string or an array depending on multiple. | any | '' |
---|
Is this resolved in the meantime?