tsv2-library 1.1.0-dev-alpha.39 → 1.1.0-dev-alpha.41
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.
- package/dist/src/components/v2/ButtonSelectTree/ButtonSelectTree.vue.d.ts +6 -0
- package/dist/src/components/v2/DialogSelectTree/DialogSelectTree.vue.d.ts +6 -0
- package/dist/src/components/v2/Tree/Tree.vue.d.ts +6 -0
- package/dist/style.css +1 -1
- package/dist/tsv2-library.es.js +159 -15
- package/dist/tsv2-library.umd.js +2 -2
- package/package.json +1 -1
- package/src/components/v2/ButtonSelectTree/ButtonSelectTree.vue.d.ts +6 -0
- package/src/components/v2/DialogSelectTree/DialogSelectTree.vue.d.ts +6 -0
- package/src/components/v2/Tree/Tree.vue.d.ts +6 -0
|
@@ -143,6 +143,12 @@ export interface ButtonSelectTreeProps {
|
|
|
143
143
|
* Defines the group tree to disable excluded keys
|
|
144
144
|
*/
|
|
145
145
|
excludedKeys?: string[];
|
|
146
|
+
/**
|
|
147
|
+
* Defines the group tree to only allow specific keys.
|
|
148
|
+
* The inverse of excludedKeys — only nodes whose key is in this list will be selectable.
|
|
149
|
+
* All other nodes will be disabled.
|
|
150
|
+
*/
|
|
151
|
+
allowedKeys?: string[];
|
|
146
152
|
/**
|
|
147
153
|
* Define wether single selection can be edited or readonly
|
|
148
154
|
* @default true
|
|
@@ -67,6 +67,12 @@ export interface SelectTreeDialogProps {
|
|
|
67
67
|
* Defines the group tree to disable excluded keys
|
|
68
68
|
*/
|
|
69
69
|
excludedKeys?: string[];
|
|
70
|
+
/**
|
|
71
|
+
* Defines the group tree to only allow specific keys.
|
|
72
|
+
* The inverse of excludedKeys — only nodes whose key is in this list will be selectable.
|
|
73
|
+
* All other nodes will be disabled.
|
|
74
|
+
*/
|
|
75
|
+
allowedKeys?: string[];
|
|
70
76
|
/**
|
|
71
77
|
* Render hidden dialog to trigger fetch tree
|
|
72
78
|
*/
|
|
@@ -133,6 +133,12 @@ export interface TreeProps {
|
|
|
133
133
|
* Defines the group tree to disable excluded keys
|
|
134
134
|
*/
|
|
135
135
|
excludedKeys?: string[];
|
|
136
|
+
/**
|
|
137
|
+
* Defines the group tree to only allow specific keys.
|
|
138
|
+
* The inverse of excludedKeys — only nodes whose key is in this list will be selectable.
|
|
139
|
+
* All other nodes will be disabled.
|
|
140
|
+
*/
|
|
141
|
+
allowedKeys?: string[];
|
|
136
142
|
/**
|
|
137
143
|
* Specifies the required manager transaction permission to make a node selectable.
|
|
138
144
|
* If the node's `manager[transaction]` value is false, the node will be rendered in a disabled state.
|