Update API doc

pull/3892/head
GitHub Actions Bot 2023-04-24 09:44:12 +00:00
parent cc7d0ccce2
commit 4e8315e57b
1 changed files with 58 additions and 0 deletions

View File

@ -22316,6 +22316,48 @@
"methodDescription": "Defines methods that can be accessed by the component's reference.", "methodDescription": "Defines methods that can be accessed by the component's reference.",
"typeDescription": "Defines the custom types used by the module.", "typeDescription": "Defines the custom types used by the module.",
"values": { "values": {
"SkeletonPassThroughMethodOptions": {
"description": "Custom passthrough(pt) option method.",
"relatedProp": "",
"props": [
{
"name": "props",
"optional": false,
"readonly": false,
"type": "SkeletonProps",
"default": ""
}
],
"methods": []
},
"SkeletonPassThroughOptions": {
"description": "Custom passthrough(pt) options.",
"relatedProp": "SkeletonProps.pt",
"props": [
{
"name": "root",
"optional": true,
"readonly": false,
"type": "SkeletonPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the root's DOM element."
}
],
"methods": []
},
"SkeletonPassThroughAttributes": {
"description": "Custom passthrough attributes for each DOM elements",
"relatedProp": "",
"props": [
{
"name": "[key: string]",
"optional": false,
"readonly": false,
"type": "any"
}
],
"methods": []
},
"SkeletonProps": { "SkeletonProps": {
"description": "Defines valid properties in Skeleton component.", "description": "Defines valid properties in Skeleton component.",
"relatedProp": "", "relatedProp": "",
@ -22367,6 +22409,14 @@
"type": "\"none\" | \"wave\"", "type": "\"none\" | \"wave\"",
"default": "wave", "default": "wave",
"description": "Type of the animation." "description": "Type of the animation."
},
{
"name": "pt",
"optional": true,
"readonly": false,
"type": "SkeletonPassThroughOptions",
"default": "",
"description": "Uses to pass attributes to DOM elements inside the component."
} }
], ],
"methods": [] "methods": []
@ -22384,6 +22434,14 @@
"methods": [] "methods": []
} }
} }
},
"types": {
"description": "Defines the custom types used by the module.",
"values": {
"SkeletonPassThroughOptionType": {
"values": "SkeletonPassThroughAttributes | (options: SkeletonPassThroughMethodOptions) => SkeletonPassThroughAttributes | null | undefined"
}
}
} }
}, },
"slider": { "slider": {