@@ -39,16 +39,16 @@ type domProps = {
39
39
(* accessibility *)
40
40
(* https://www.w3.org/TR/wai-aria-1.1/ *)
41
41
(* https://accessibilityresources.org/<aria-tag> is a great resource for these *)
42
- ariaCurrent : [`page | `step | `location | `date | `time | `_true | `_false]
43
- [@ ns.optional] [@ bs.as "aria-current" ];
42
+ (* ariaCurrent: [`page | `step | `location | `date | `time | `_true | `_false]
43
+ [@ns.optional] [@bs.as "aria-current"]; *)
44
44
ariaDetails : string
45
45
[@ ns.optional] [@ bs.as "aria-details" ];
46
46
ariaDisabled : bool
47
47
[@ ns.optional] [@ bs.as "aria-disabled" ];
48
48
ariaHidden : bool
49
49
[@ ns.optional] [@ bs.as "aria-hidden" ];
50
- ariaInvalid : [`grammar | `spelling | `_true| `_false]
51
- [@ ns.optional] [@ bs.as "aria-invalid" ];
50
+ (* ariaInvalid: [`grammar | `spelling | `_true| `_false]
51
+ [@ns.optional] [@bs.as "aria-invalid"]; *)
52
52
ariaKeyshortcuts : string
53
53
[@ ns.optional] [@ bs.as "aria-keyshortcuts" ];
54
54
ariaLabel : string
@@ -58,12 +58,12 @@ type domProps = {
58
58
(* Widget Attributes *)
59
59
ariaAutocomplete : [`inline | `list | `both | `none ]
60
60
[@ ns.optional] [@ bs.as "aria-autocomplete" ];
61
- ariaChecked : [`_true | `_false | `mixed ] (* https://www.w3.org/TR/wai-aria-1.1/#valuetype_tristate *)
62
- [@ ns.optional] [@ bs.as "aria-checked" ];
61
+ (* ariaChecked: [`_true | `_false | `mixed] (* https://www.w3.org/TR/wai-aria-1.1/#valuetype_tristate *)
62
+ [@ns.optional] [@bs.as "aria-checked"]; *)
63
63
ariaExpanded : bool
64
64
[@ ns.optional] [@ bs.as "aria-expanded" ];
65
- ariaHaspopup : [`menu | `listbox | `tree | `grid | `dialog | `_true | `_false]
66
- [@ ns.optional] [@ bs.as "aria-haspopup" ];
65
+ (* ariaHaspopup: [`menu | `listbox | `tree | `grid | `dialog | `_true | `_false]
66
+ [@ns.optional] [@bs.as "aria-haspopup"]; *)
67
67
ariaLevel : int
68
68
[@ ns.optional] [@ bs.as "aria-lavel" ];
69
69
ariaModal : bool
@@ -76,8 +76,8 @@ type domProps = {
76
76
[@ ns.optional] [@ bs.as "aria-orientation" ];
77
77
ariaPlaceholder : string
78
78
[@ ns.optional] [@ bs.as "aria-placeholder" ];
79
- ariaPressed : [`_true | `_false| `mixed ] (* https://www.w3.org/TR/wai-aria-1.1/#valuetype_tristate *)
80
- [@ ns.optional] [@ bs.as "aria-pressed" ];
79
+ (* ariaPressed: [`_true | `_false| `mixed] (* https://www.w3.org/TR/wai-aria-1.1/#valuetype_tristate *)
80
+ [@ns.optional] [@bs.as "aria-pressed"]; *)
81
81
ariaReadonly : bool
82
82
[@ ns.optional] [@ bs.as "aria-readonly" ];
83
83
ariaRequired : bool
@@ -275,8 +275,8 @@ type domProps = {
275
275
[@ ns.optional];
276
276
list : string
277
277
[@ ns.optional];
278
- loading : [`_lazy | `eager ]
279
- [@ ns.optional];
278
+ (* loading: [`_lazy | `eager]
279
+ [@ns.optional]; *)
280
280
loop : bool
281
281
[@ ns.optional];
282
282
low : int
0 commit comments