Update API doc

pull/3946/head
GitHub Actions Bot 2023-05-10 08:08:03 +00:00
parent 413fb026d6
commit 6dddb5ca86
1 changed files with 238 additions and 0 deletions

View File

@ -26395,6 +26395,34 @@
"methodDescription": "Defines methods that can be accessed by the component's reference.", "methodDescription": "Defines methods that can be accessed by the component's reference.",
"typeDescription": "Defines the custom types used by the module.", "typeDescription": "Defines the custom types used by the module.",
"values": { "values": {
"OrganizationChartPassThroughMethodOptions": {
"description": "Custom passthrough(pt) option method.",
"relatedProp": "",
"props": [
{
"name": "props",
"optional": false,
"readonly": false,
"type": "OrganizationChartProps",
"default": ""
},
{
"name": "state",
"optional": false,
"readonly": false,
"type": "OrganizationChartState",
"default": ""
},
{
"name": "context",
"optional": false,
"readonly": false,
"type": "OrganizationChartContext",
"default": ""
}
],
"methods": []
},
"OrganizationChartNode": { "OrganizationChartNode": {
"description": "Defines valid properties in OrganizationChartNode.", "description": "Defines valid properties in OrganizationChartNode.",
"relatedProp": "", "relatedProp": "",
@ -26488,6 +26516,200 @@
], ],
"methods": [] "methods": []
}, },
"OrganizationChartPassThroughOptions": {
"description": "Custom passthrough(pt) options.",
"relatedProp": "OrganizationChartProps.pt",
"props": [
{
"name": "root",
"optional": true,
"readonly": false,
"type": "OrganizationChartPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the root's DOM element."
},
{
"name": "table",
"optional": true,
"readonly": false,
"type": "OrganizationChartPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the table's DOM element."
},
{
"name": "body",
"optional": true,
"readonly": false,
"type": "OrganizationChartPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the body's DOM element."
},
{
"name": "row",
"optional": true,
"readonly": false,
"type": "OrganizationChartPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the row' DOM element."
},
{
"name": "cell",
"optional": true,
"readonly": false,
"type": "OrganizationChartPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the cell's DOM element."
},
{
"name": "node",
"optional": true,
"readonly": false,
"type": "OrganizationChartPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the node's DOM element."
},
{
"name": "nodeToggler",
"optional": true,
"readonly": false,
"type": "OrganizationChartPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the nodeToggler's DOM element."
},
{
"name": "nodeTogglerIcon",
"optional": true,
"readonly": false,
"type": "OrganizationChartPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the nodeTogglerIcon's DOM element."
},
{
"name": "lines",
"optional": true,
"readonly": false,
"type": "OrganizationChartPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the lines's DOM element."
},
{
"name": "lineCell",
"optional": true,
"readonly": false,
"type": "OrganizationChartPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the lineCell's DOM element."
},
{
"name": "lineDown",
"optional": true,
"readonly": false,
"type": "OrganizationChartPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the lineDown's DOM element."
},
{
"name": "nodes",
"optional": true,
"readonly": false,
"type": "OrganizationChartPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the nodes's DOM element."
},
{
"name": "nodeCell",
"optional": true,
"readonly": false,
"type": "OrganizationChartPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the nodeCell's DOM element."
}
],
"methods": []
},
"OrganizationChartPassThroughAttributes": {
"description": "Custom passthrough attributes for each DOM elements",
"relatedProp": "",
"props": [
{
"name": "[key: string]",
"optional": false,
"readonly": false,
"type": "any"
}
],
"methods": []
},
"OrganizationChartState": {
"description": "Defines current inline state in OrganizationChart component.",
"relatedProp": "",
"props": [
{
"name": "d_collapsedKeys",
"optional": false,
"readonly": false,
"type": "OrganizationChartCollapsedKeys",
"default": "false",
"description": "Current collapsed keys' state."
}
],
"methods": []
},
"OrganizationChartContext": {
"description": "Defines current options in OrganizationChart component.",
"relatedProp": "",
"props": [
{
"name": "expanded",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Current focus expanded of the node as a boolean."
},
{
"name": "selectable",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Current selectable state of the node as a boolean."
},
{
"name": "selected",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Current selection state of the node as a boolean."
},
{
"name": "toggleable",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Current toggleable state of the node as a boolean."
},
{
"name": "active",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Current active state of the node as a boolean."
},
{
"name": "lineTop",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "false",
"description": "Current being top line state of the node as a boolean."
}
],
"methods": []
},
"OrganizationChartProps": { "OrganizationChartProps": {
"description": "Defines valid properties in OrganizationChart component.", "description": "Defines valid properties in OrganizationChart component.",
"relatedProp": "", "relatedProp": "",
@ -26531,6 +26753,14 @@
"type": "boolean", "type": "boolean",
"default": "false", "default": "false",
"description": "Whether the nodes can be expanded or toggled." "description": "Whether the nodes can be expanded or toggled."
},
{
"name": "pt",
"optional": true,
"readonly": false,
"type": "OrganizationChartPassThroughOptions",
"default": "",
"description": "Uses to pass attributes to DOM elements inside the component."
} }
], ],
"methods": [] "methods": []
@ -26660,6 +26890,14 @@
] ]
} }
} }
},
"types": {
"description": "Defines the custom types used by the module.",
"values": {
"OrganizationChartPassThroughOptionType": {
"values": "OrganizationChartPassThroughAttributes | (options: OrganizationChartPassThroughMethodOptions) => OrganizationChartPassThroughAttributes | null | undefined"
}
}
} }
}, },
"overlaypanel": { "overlaypanel": {