diff --git a/pyscript.core/src/stdlib/pyweb/ui/elements.py b/pyscript.core/src/stdlib/pyweb/ui/elements.py index be8d0db4..f40a7872 100644 --- a/pyscript.core/src/stdlib/pyweb/ui/elements.py +++ b/pyscript.core/src/stdlib/pyweb/ui/elements.py @@ -640,6 +640,11 @@ class option(TextElementBase): tag = "option" + disabled = JSProperty("value") + label = JSProperty("label") + selected = JSProperty("selected") + value = JSProperty("value") + class output(TextElementBase): """Ref: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/output"""