Update API doc
parent
ee6f59fcf3
commit
d119005ac9
|
@ -3823,6 +3823,70 @@
|
|||
"methodDescription": "Defines methods that can be accessed by the component's reference.",
|
||||
"typeDescription": "Defines the custom types used by the module.",
|
||||
"values": {
|
||||
"BlockUIPassThroughMethodOptions": {
|
||||
"description": "Custom passthrough(pt) option method.",
|
||||
"relatedProp": "",
|
||||
"props": [
|
||||
{
|
||||
"name": "props",
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"type": "BlockUIProps",
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"name": "state",
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"type": "BlockUIState",
|
||||
"default": ""
|
||||
}
|
||||
],
|
||||
"methods": []
|
||||
},
|
||||
"BlockUIPassThroughOptions": {
|
||||
"description": "Custom passthrough(pt) options.",
|
||||
"relatedProp": "BlockUIProps.pt",
|
||||
"props": [
|
||||
{
|
||||
"name": "root",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "BlockUIPassThroughOptionType",
|
||||
"default": "",
|
||||
"description": "Uses to pass attributes to the root's DOM element."
|
||||
}
|
||||
],
|
||||
"methods": []
|
||||
},
|
||||
"BlockUIPassThroughAttributes": {
|
||||
"description": "Custom passthrough attributes for each DOM elements",
|
||||
"relatedProp": "",
|
||||
"props": [
|
||||
{
|
||||
"name": "[key: string]",
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"type": "any"
|
||||
}
|
||||
],
|
||||
"methods": []
|
||||
},
|
||||
"BlockUIState": {
|
||||
"description": "Defines current inline state in BlockUI component.",
|
||||
"relatedProp": "",
|
||||
"props": [
|
||||
{
|
||||
"name": "isBlocked",
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"type": "boolean",
|
||||
"default": "false",
|
||||
"description": "Current blocked state as a boolean."
|
||||
}
|
||||
],
|
||||
"methods": []
|
||||
},
|
||||
"BlockUIProps": {
|
||||
"description": "Defines valid properties in BlockUI component",
|
||||
"relatedProp": "",
|
||||
|
@ -3858,6 +3922,14 @@
|
|||
"type": "boolean",
|
||||
"default": "true",
|
||||
"description": "Whether to automatically manage layering."
|
||||
},
|
||||
{
|
||||
"name": "pt",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "BlockUIPassThroughOptions",
|
||||
"default": "",
|
||||
"description": "Uses to pass attributes to DOM elements inside the component."
|
||||
}
|
||||
],
|
||||
"methods": []
|
||||
|
@ -3895,6 +3967,14 @@
|
|||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"types": {
|
||||
"description": "Defines the custom types used by the module.",
|
||||
"values": {
|
||||
"BlockUIPassThroughOptionType": {
|
||||
"values": "BlockUIPassThroughAttributes | (options: BlockUIPassThroughMethodOptions) => BlockUIPassThroughAttributes | null | undefined"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"breadcrumb": {
|
||||
|
|
Loading…
Reference in New Issue