From 8cf069f26b11993fe5438a1bf2e4309f13154c1a Mon Sep 17 00:00:00 2001 From: kyybo <106741733+kyybo@users.noreply.github.com> Date: Wed, 11 Sep 2024 17:25:23 +0200 Subject: [PATCH] Fix #7126 : update Tree TypeScript documentation (#7160) * replace the PassThrought options 'checkboxContainer' and 'checkbox' with 'nodeCheckbox' --- components/lib/tree/tree.d.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/components/lib/tree/tree.d.ts b/components/lib/tree/tree.d.ts index 0b57db89e4..328eab06b0 100644 --- a/components/lib/tree/tree.d.ts +++ b/components/lib/tree/tree.d.ts @@ -74,13 +74,9 @@ export interface TreePassThroughOptions { */ togglerIcon?: TreePassThroughType>; /** - * Uses to pass attributes to the checkbox container's DOM element. + * Uses to pass attributes to the node checkbox's DOM element. */ - checkboxContainer?: TreePassThroughType>; - /** - * Uses to pass attributes to the checkbox's DOM element. - */ - checkbox?: TreePassThroughType>; + nodeCheckbox?: TreePassThroughType>; /** * Uses to pass attributes to the checkbox icon's DOM element. */