Skip to content

Commit 81fd5f4

Browse files
committed
Update docs:api
1 parent 44cd374 commit 81fd5f4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/reference/generated/tabs-panel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "A panel displayed when the corresponding tab is active.\nRenders a `<div>` element.",
44
"props": {
55
"value": {
6-
"type": "Tabs.Tab.Value",
6+
"type": "any",
77
"description": "The value of the TabPanel. It will be shown when the Tab with the corresponding value is selected.\nIf not provided, it will fall back to the index of the panel.\nIt is recommended to explicitly provide it, as it's required for the tab panel to be rendered on the server."
88
},
99
"className": {

docs/reference/generated/tabs-root.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"description": "Groups the tabs and the corresponding panels.\nRenders a `<div>` element.",
44
"props": {
55
"defaultValue": {
6-
"type": "Tabs.Tab.Value",
6+
"type": "any",
77
"default": "0",
88
"description": "The default value. Use when the component is not controlled.\nWhen the value is `null`, no Tab will be active."
99
},
1010
"value": {
11-
"type": "Tabs.Tab.Value",
11+
"type": "any",
1212
"description": "The value of the currently active `Tab`. Use when the component is controlled.\nWhen the value is `null`, no Tab will be active."
1313
},
1414
"onValueChange": {

docs/reference/generated/tabs-tab.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "An individual interactive tab button that toggles the corresponding panel.\nRenders a `<button>` element.",
44
"props": {
55
"value": {
6-
"type": "Tabs.Tab.Value",
6+
"type": "any",
77
"description": "The value of the Tab.\nWhen not specified, the value is the child position index."
88
},
99
"nativeButton": {

0 commit comments

Comments
 (0)