From 4e8315e57b746f933a7ba9373e36d8512bc1bbab Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Mon, 24 Apr 2023 09:44:12 +0000 Subject: [PATCH] Update API doc --- doc/common/apidoc/index.json | 58 ++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/doc/common/apidoc/index.json b/doc/common/apidoc/index.json index 57093df8c..8ef57bfcc 100644 --- a/doc/common/apidoc/index.json +++ b/doc/common/apidoc/index.json @@ -22316,6 +22316,48 @@ "methodDescription": "Defines methods that can be accessed by the component's reference.", "typeDescription": "Defines the custom types used by the module.", "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": { "description": "Defines valid properties in Skeleton component.", "relatedProp": "", @@ -22367,6 +22409,14 @@ "type": "\"none\" | \"wave\"", "default": "wave", "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": [] @@ -22384,6 +22434,14 @@ "methods": [] } } + }, + "types": { + "description": "Defines the custom types used by the module.", + "values": { + "SkeletonPassThroughOptionType": { + "values": "SkeletonPassThroughAttributes | (options: SkeletonPassThroughMethodOptions) => SkeletonPassThroughAttributes | null | undefined" + } + } } }, "slider": {