You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/translations/api-docs/select-root/select-root.json
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -5,19 +5,25 @@
5
5
"description": "Determines the type of alignment mode. <code>selected-item</code> aligns the popup so that the selected item appears over the trigger, while <code>trigger</code> aligns the popup using standard anchor positioning."
6
6
},
7
7
"animated": {
8
-
"description": "If <code>true</code>, the Menu supports CSS-based animations and transitions. It is kept in the DOM until the animation completes."
8
+
"description": "If <code>true</code>, the Select supports CSS-based animations and transitions. It is kept in the DOM until the animation completes."
9
9
},
10
-
"defaultOpen": { "description": "If <code>true</code>, the Menu is initially open." },
11
-
"disabled": { "description": "If <code>true</code>, the Menu is disabled." },
10
+
"defaultOpen": { "description": "If <code>true</code>, the Select is initially open." },
11
+
"defaultValue": { "description": "The default value of the select." },
12
+
"disabled": { "description": "If <code>true</code>, the Select is disabled." },
13
+
"id": { "description": "The id of the Select." },
12
14
"loop": {
13
15
"description": "If <code>true</code>, using keyboard navigation will wrap focus to the other end of the list once the end is reached."
14
16
},
17
+
"name": { "description": "The name of the Select in the owning form." },
15
18
"onOpenChange": {
16
19
"description": "Callback fired when the component requests to be opened or closed."
17
20
},
18
21
"open": {
19
22
"description": "Allows to control whether the dropdown is open. This is a controlled counterpart of <code>defaultOpen</code>."
20
-
}
23
+
},
24
+
"readOnly": { "description": "If <code>true</code>, the Select is read-only." },
25
+
"required": { "description": "If <code>true</code>, the Select is required." },
26
+
"value": { "description": "The value of the select." }
0 commit comments