Add automatic item loading for InputField(type="select")
Something like what's below should work. If the field type is an enum, we load the values and place them in the Trame items. Will need to discuss with others as there are probably other approaches with pros/cons.
```python
try:
args |= {
"items": (str([e.value for e in field_info.annotation]),)
}
except TypeError:
pass
```
issue