Update API doc

pull/3999/head
GitHub Actions Bot 2023-06-21 13:59:15 +00:00
parent 77074e623f
commit 2998f72e15
1 changed files with 147 additions and 0 deletions

View File

@ -38115,6 +38115,145 @@
"methodDescription": "Defines methods that can be accessed by the component's reference.",
"typeDescription": "Defines the custom types used by the module.",
"values": {
"TooltipPassThroughHooksOptions": {
"description": "Custom passthrough(pt) hooks options.",
"relatedProp": "",
"props": [
{
"name": "created",
"optional": true,
"readonly": false,
"type": "DirectiveBinding<any>",
"default": "",
"description": "Called before bound element's attributes or event listeners are applied."
},
{
"name": "beforeMount",
"optional": true,
"readonly": false,
"type": "DirectiveBinding<any>",
"default": "",
"description": "Called right before the element is inserted into the DOM."
},
{
"name": "mounted",
"optional": true,
"readonly": false,
"type": "DirectiveBinding<any>",
"default": "",
"description": "Called when the bound element's parent component and all its children are mounted."
},
{
"name": "beforeUpdate",
"optional": true,
"readonly": false,
"type": "DirectiveBinding<any>",
"default": "",
"description": "Called before the parent component is updated."
},
{
"name": "updated",
"optional": true,
"readonly": false,
"type": "DirectiveBinding<any>",
"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<any>",
"default": "",
"description": "Called before the parent component is unmounted."
},
{
"name": "unmounted",
"optional": true,
"readonly": false,
"type": "DirectiveBinding<any>",
"default": "",
"description": "Called when the parent component is unmounted."
}
],
"methods": []
},
"TooltipPassThroughCSSOptions": {
"description": "Custom passthrough(pt) css options.",
"relatedProp": "",
"props": [
{
"name": "class",
"optional": true,
"readonly": false,
"type": "any",
"default": "",
"description": "Style class of the element."
},
{
"name": "style",
"optional": true,
"readonly": false,
"type": "any",
"default": "",
"description": "Inline style of the element."
}
],
"methods": []
},
"TooltipPassThroughDirectiveOptions": {
"relatedProp": "",
"props": [
{
"name": "hooks",
"optional": true,
"readonly": false,
"type": "TooltipPassThroughHooksOptions",
"default": "",
"description": "Uses to pass attributes to the life cycle hooks."
},
{
"name": "css",
"optional": true,
"readonly": false,
"type": "TooltipPassThroughCSSOptions",
"default": "",
"description": "Uses to pass attributes to the styles."
}
],
"methods": []
},
"TooltipPassThroughOptions": {
"description": "Custom passthrough(pt) options.",
"relatedProp": "TooltipOptions.pt",
"props": [
{
"name": "root",
"optional": true,
"readonly": false,
"type": "TooltipPassThroughDirectiveOptions",
"default": "",
"description": "Uses to pass attributes to the root's DOM element."
},
{
"name": "text",
"optional": true,
"readonly": false,
"type": "TooltipPassThroughDirectiveOptions",
"default": "",
"description": "Uses to pass attributes to the text's DOM element."
},
{
"name": "arrow",
"optional": true,
"readonly": false,
"type": "TooltipPassThroughDirectiveOptions",
"default": "",
"description": "Uses to pass attributes to the arrow's DOM element."
}
],
"methods": []
},
"TooltipOptions": {
"description": "Defines options of Tooltip.",
"relatedProp": "",
@ -38182,6 +38321,14 @@
"type": "number",
"default": "0",
"description": "When present, it adds a custom delay to the tooltip's hiding."
},
{
"name": "pt",
"optional": true,
"readonly": false,
"type": "TooltipPassThroughOptions",
"default": "",
"description": "Uses to pass attributes to DOM elements inside the component."
}
],
"methods": []