Add the accessible-expanded property

This commit is contained in:
Arnold Loubriat 2024-12-22 16:37:56 +01:00 committed by Simon Hausmann
parent 53fd7b12e4
commit f30f953ffd
13 changed files with 66 additions and 1 deletions

View file

@ -27,6 +27,7 @@ export component ComboBox {
accessible-role: combobox;
accessible-enabled: root.enabled;
accessible-expandable: true;
accessible-expanded: base.popup-has-focus;
accessible-value <=> root.current-value;
states [

View file

@ -27,6 +27,7 @@ export component ComboBox {
accessible-role: combobox;
accessible-enabled: root.enabled;
accessible-expandable: true;
accessible-expanded: base.popup-has-focus;
accessible-value <=> root.current-value;
states [

View file

@ -27,6 +27,7 @@ export component ComboBox {
accessible-role: combobox;
accessible-enabled: root.enabled;
accessible-expandable: true;
accessible-expanded: base.popup-has-focus;
accessible-value <=> root.current-value;
states [

View file

@ -26,6 +26,7 @@ export component ComboBox {
accessible-role: combobox;
accessible-enabled: root.enabled;
accessible-expandable: true;
accessible-expanded: base.popup-has-focus;
accessible-value <=> root.current-value;
states [

View file

@ -16,6 +16,7 @@ export component ComboBox {
accessible-role: combobox;
accessible-enabled: root.enabled;
accessible-expandable: true;
accessible-expanded: base.popup-has-focus;
accessible-value <=> root.current-value;
forward-focus: base;