tsv2-library 0.3.74 → 0.3.76

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -107,6 +107,10 @@ export interface ButtonSelectTreeProps {
107
107
  * Defines the tree to be flattened and shows disposable only
108
108
  */
109
109
  flattenDisposableNode?: boolean;
110
+ /**
111
+ * Defines the group tree to disable excluded keys
112
+ */
113
+ excludedKeys?: number[];
110
114
  }
111
115
 
112
116
  export type ButtonSelectTreeEmits = {
@@ -49,6 +49,10 @@ export interface SelectTreeDialogProps {
49
49
  * Defines the tree to be flattened and shows disposable only
50
50
  */
51
51
  flattenDisposableNode?: boolean;
52
+ /**
53
+ * Defines the group tree to disable excluded keys
54
+ */
55
+ excludedKeys?: number[];
52
56
  }
53
57
 
54
58
  type TreeSelectPayload = {
@@ -115,6 +115,10 @@ export interface TreeProps {
115
115
  * By default, query params has been determined by the path
116
116
  */
117
117
  groupParams?: TreeQueryParams;
118
+ /**
119
+ * Defines the group tree to disable excluded keys
120
+ */
121
+ excludedKeys?: number[];
118
122
  }
119
123
 
120
124
  export type TreeEmits = {