Skip to content

Commit

Permalink
Update API doc
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions Bot committed Jul 11, 2023
1 parent 2b7f7af commit 27a9654
Showing 1 changed file with 13 additions and 39 deletions.
52 changes: 13 additions & 39 deletions components/doc/common/apidoc/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -14575,15 +14575,15 @@
"name": "sortIcon",
"optional": true,
"readonly": false,
"type": "IconType<DataTable<TValue>>",
"type": "IconType<DataTable<TValue>, Object>",
"default": "",
"description": "Icon to display the current sorting status."
},
{
"name": "sortOrder",
"optional": true,
"readonly": false,
"type": "null | 0 | 1 | -1",
"type": "SortOrder",
"default": "",
"description": "Order to sort the data by default."
},
Expand Down Expand Up @@ -16662,6 +16662,9 @@
},
"DataTablePassThroughType": {
"values": "PassThroughType<T, DataTablePassThroughMethodOptions<DataTableValueArray>>"
},
"SortOrder": {
"values": "1 | 0 | -1 | null | undefined"
}
}
}
Expand Down Expand Up @@ -47188,51 +47191,22 @@
"parameters": [
{
"name": "prefix",
"type": "string"
}
],
"returnType": "string"
}
}
},
"interfaces": {
"description": "Defines the custom interfaces used by the module.",
"values": {
"IconOptions": {
"relatedProp": "",
"props": [
{
"name": "iconProps",
"optional": false,
"readonly": false,
"type": "HTMLProps<HTMLElement>"
},
{
"name": "element",
"optional": false,
"readonly": false,
"type": "ReactNode"
},
{
"name": "props",
"optional": true,
"readonly": false,
"type": "ParentProps"
},
{
"name": "[key: string]",
"optional": false,
"readonly": false,
"type": "any"
"type": "string",
"description": "the optional string prefix of the id"
}
],
"callbacks": []
"returnType": "string",
"description": "Generate a unique id for components for a page."
}
}
},
"types": {
"description": "Defines the custom types used by the module.",
"values": {
"IconOptions": {
"values": "AdditionalProps & Object",
"description": "Icon options passed to any icon.\nComponentProps are props from the owning component.\nAdditionalProps are any custom properties of an icon like SortIcon of the Datatable for example."
},
"IconType": {
"values": "React.ReactNode | Function"
},
Expand Down

0 comments on commit 27a9654

Please sign in to comment.