diff --git a/doc/common/apidoc/index.json b/doc/common/apidoc/index.json index c402402cc..02198cccb 100644 --- a/doc/common/apidoc/index.json +++ b/doc/common/apidoc/index.json @@ -3621,6 +3621,48 @@ "methodDescription": "Defines methods that can be accessed by the component's reference.", "typeDescription": "Defines the custom types used by the module.", "values": { + "BadgePassThroughMethodOptions": { + "description": "Custom passthrough(pt) option method.", + "relatedProp": "", + "props": [ + { + "name": "props", + "optional": false, + "readonly": false, + "type": "BadgeProps", + "default": "" + } + ], + "methods": [] + }, + "BadgePassThroughAttributes": { + "description": "Custom passthrough attributes for each DOM elements", + "relatedProp": "", + "props": [ + { + "name": "[key: string]", + "optional": false, + "readonly": false, + "type": "any" + } + ], + "methods": [] + }, + "BadgePassThroughOptions": { + "description": "Custom passthrough(pt) options.", + "relatedProp": "BadgeProps.pt", + "props": [ + { + "name": "root", + "optional": true, + "readonly": false, + "type": "BadgePassThroughOptionType", + "default": "", + "description": "Uses to pass attributes to the root's DOM element." + } + ], + "methods": [] + }, "BadgeProps": { "description": "Defines valid properties in Badge component.", "relatedProp": "", @@ -3648,6 +3690,14 @@ "type": "null | \"large\" | \"xlarge\"", "default": "", "description": "Size of the badge, valid options are 'large' and 'xlarge'." + }, + { + "name": "pt", + "optional": true, + "readonly": false, + "type": "BadgePassThroughOptions", + "default": "", + "description": "Uses to pass attributes to DOM elements inside the component." } ], "methods": [] @@ -3672,6 +3722,14 @@ "methods": [] } } + }, + "types": { + "description": "Defines the custom types used by the module.", + "values": { + "BadgePassThroughOptionType": { + "values": "BadgePassThroughAttributes | (options: BadgePassThroughMethodOptions) => BadgePassThroughAttributes | null | undefined" + } + } } }, "badgedirective": {