From b4b0fa7e85634731786760451afe4524eb8d45fe Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Thu, 22 Jun 2023 13:56:41 +0000 Subject: [PATCH] Update API doc --- doc/common/apidoc/index.json | 78 ++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) diff --git a/doc/common/apidoc/index.json b/doc/common/apidoc/index.json index 0e609d376..57040c3f5 100644 --- a/doc/common/apidoc/index.json +++ b/doc/common/apidoc/index.json @@ -35249,6 +35249,84 @@ "methodDescription": "Defines methods that can be accessed by the component's reference.", "typeDescription": "Defines the custom types used by the module.", "values": { + "StyleClassPassThroughHooksOptions": { + "description": "Custom passthrough(pt) hooks options.", + "relatedProp": "", + "props": [ + { + "name": "created", + "optional": true, + "readonly": false, + "type": "DirectiveBinding", + "default": "", + "description": "Called before bound element's attributes or event listeners are applied." + }, + { + "name": "beforeMount", + "optional": true, + "readonly": false, + "type": "DirectiveBinding", + "default": "", + "description": "Called right before the element is inserted into the DOM." + }, + { + "name": "mounted", + "optional": true, + "readonly": false, + "type": "DirectiveBinding", + "default": "", + "description": "Called when the bound element's parent component and all its children are mounted." + }, + { + "name": "beforeUpdate", + "optional": true, + "readonly": false, + "type": "DirectiveBinding", + "default": "", + "description": "Called before the parent component is updated." + }, + { + "name": "updated", + "optional": true, + "readonly": false, + "type": "DirectiveBinding", + "default": "", + "description": "Called after the parent component and all of its children have updated all of its children have updated." + }, + { + "name": "beforeUnmount", + "optional": true, + "readonly": false, + "type": "DirectiveBinding", + "default": "", + "description": "Called before the parent component is unmounted." + }, + { + "name": "unmounted", + "optional": true, + "readonly": false, + "type": "DirectiveBinding", + "default": "", + "description": "Called when the parent component is unmounted." + } + ], + "methods": [] + }, + "StyleClassPassThroughDirectiveOptions": { + "description": "Defines passthrough(pt) options.", + "relatedProp": "", + "props": [ + { + "name": "hooks", + "optional": true, + "readonly": false, + "type": "StyleClassPassThroughHooksOptions", + "default": "", + "description": "Uses to pass attributes to the life cycle hooks." + } + ], + "methods": [] + }, "StyleClassOptions": { "description": "Defines options of StyleClass.", "relatedProp": "",