diff --git a/doc/common/apidoc/index.json b/doc/common/apidoc/index.json index 13a277ec0..57093df8c 100644 --- a/doc/common/apidoc/index.json +++ b/doc/common/apidoc/index.json @@ -14955,6 +14955,102 @@ "methodDescription": "Defines methods that can be accessed by the component's reference.", "typeDescription": "Defines the custom types used by the module.", "values": { + "InplacePassThroughMethodOptions": { + "description": "Custom passthrough(pt) option method.", + "relatedProp": "", + "props": [ + { + "name": "props", + "optional": false, + "readonly": false, + "type": "InplaceProps", + "default": "" + }, + { + "name": "state", + "optional": false, + "readonly": false, + "type": "InplaceState", + "default": "" + } + ], + "methods": [] + }, + "InplacePassThroughOptions": { + "description": "Custom passthrough(pt) options.", + "relatedProp": "InplaceProps.pt", + "props": [ + { + "name": "root", + "optional": true, + "readonly": false, + "type": "InplacePassThroughOptionType", + "default": "", + "description": "Uses to pass attributes to the root's DOM element." + }, + { + "name": "display", + "optional": true, + "readonly": false, + "type": "InplacePassThroughOptionType", + "default": "", + "description": "Uses to pass attributes to the display's DOM element." + }, + { + "name": "content", + "optional": true, + "readonly": false, + "type": "InplacePassThroughOptionType", + "default": "", + "description": "Uses to pass attributes to the content's DOM element." + }, + { + "name": "closeButton", + "optional": true, + "readonly": false, + "type": "InplacePassThroughOptionType", + "default": "", + "description": "Uses to pass attributes to the close button's DOM element." + }, + { + "name": "closeIcon", + "optional": true, + "readonly": false, + "type": "InplacePassThroughOptionType", + "default": "", + "description": "Uses to pass attributes to the close icon's DOM element." + } + ], + "methods": [] + }, + "InplacePassThroughAttributes": { + "description": "Custom passthrough attributes for each DOM elements", + "relatedProp": "", + "props": [ + { + "name": "[key: string]", + "optional": false, + "readonly": false, + "type": "any" + } + ], + "methods": [] + }, + "InplaceState": { + "description": "Defines current inline state in Inplace component.", + "relatedProp": "", + "props": [ + { + "name": "d_active", + "optional": false, + "readonly": false, + "type": "boolean", + "default": "false", + "description": "Current active state as a boolean." + } + ], + "methods": [] + }, "InplaceProps": { "description": "Defines valid properties in Inplace component.", "relatedProp": "", @@ -15007,6 +15103,14 @@ "type": "ButtonHTMLAttributes", "default": "", "description": "Uses to pass all properties of the HTMLButtonElement to the close button." + }, + { + "name": "pt", + "optional": true, + "readonly": false, + "type": "InplacePassThroughOptions", + "default": "", + "description": "Uses to pass attributes to DOM elements inside the component." } ], "methods": [] @@ -15083,6 +15187,14 @@ ] } } + }, + "types": { + "description": "Defines the custom types used by the module.", + "values": { + "InplacePassThroughOptionType": { + "values": "InplacePassThroughAttributes | (options: InplacePassThroughMethodOptions) => InplacePassThroughAttributes | null | undefined" + } + } } }, "inputmask": {