Update API doc

pull/3949/head
GitHub Actions Bot 2023-05-10 11:40:21 +00:00
parent a52acf2a32
commit 30c8916934
1 changed files with 122 additions and 0 deletions

View File

@ -10466,6 +10466,55 @@
"methodDescription": "Defines methods that can be accessed by the component's reference.",
"typeDescription": "Defines the custom types used by the module.",
"values": {
"ColumnGroupPassThroughMethodOptions": {
"description": "Custom passthrough(pt) option method.",
"relatedProp": "",
"props": [
{
"name": "props",
"optional": false,
"readonly": false,
"type": "ColumnGroupProps",
"default": ""
},
{
"name": "parent",
"optional": false,
"readonly": false,
"type": "DataTablePassThroughOptions",
"default": ""
}
],
"methods": []
},
"ColumnGroupPassThroughOptions": {
"description": "Custom passthrough(pt) options.",
"relatedProp": "ColumnGroupProps.pt",
"props": [
{
"name": "root",
"optional": true,
"readonly": false,
"type": "ColumnGroupPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the root's DOM element."
}
],
"methods": []
},
"ColumnGroupPassThroughAttributes": {
"description": "Custom passthrough attributes for each DOM elements",
"relatedProp": "",
"props": [
{
"name": "[key: string]",
"optional": false,
"readonly": false,
"type": "any"
}
],
"methods": []
},
"ColumnGroupProps": {
"description": "Defines valid properties in ColumnGroup component.",
"relatedProp": "",
@ -10477,6 +10526,14 @@
"type": "\"footer\" | \"header\"",
"default": "",
"description": "Type of column group"
},
{
"name": "pt",
"optional": true,
"readonly": false,
"type": "ColumnGroupPassThroughOptions",
"default": "",
"description": "Uses to pass attributes to DOM elements inside the component."
}
],
"methods": []
@ -10494,6 +10551,14 @@
"methods": []
}
}
},
"types": {
"description": "Defines the custom types used by the module.",
"values": {
"ColumnGroupPassThroughOptionType": {
"values": "ColumnGroupPassThroughAttributes | (options: ColumnGroupPassThroughMethodOptions) => ColumnGroupPassThroughAttributes | null | undefined"
}
}
}
},
"config/PrimeVue": {
@ -30880,6 +30945,55 @@
"methodDescription": "Defines methods that can be accessed by the component's reference.",
"typeDescription": "Defines the custom types used by the module.",
"values": {
"RowPassThroughMethodOptions": {
"description": "Custom passthrough(pt) option method.",
"relatedProp": "",
"props": [
{
"name": "props",
"optional": false,
"readonly": false,
"type": "RowProps",
"default": ""
},
{
"name": "parent",
"optional": false,
"readonly": false,
"type": "ColumnGroupPassThroughOptions",
"default": ""
}
],
"methods": []
},
"RowPassThroughOptions": {
"description": "Custom passthrough(pt) options.",
"relatedProp": "undefined.RowProps.pt",
"props": [
{
"name": "root",
"optional": true,
"readonly": false,
"type": "RowPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the root's DOM element."
}
],
"methods": []
},
"RowPassThroughAttributes": {
"description": "Custom passthrough attributes for each DOM elements",
"relatedProp": "",
"props": [
{
"name": "[key: string]",
"optional": false,
"readonly": false,
"type": "any"
}
],
"methods": []
},
"RowProps": {
"description": "Defines valid properties in Row component.",
"relatedProp": "",
@ -30899,6 +31013,14 @@
"methods": []
}
}
},
"types": {
"description": "Defines the custom types used by the module.",
"values": {
"RowPassThroughOptionType": {
"values": "RowPassThroughAttributes | (options: RowPassThroughMethodOptions) => RowPassThroughAttributes | null | undefined"
}
}
}
},
"scrollpanel": {