tsv2-library 1.1.0-dev-alpha.22 → 1.1.0-dev-alpha.25
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 +4 -0
- package/dist/src/components/v2/DialogSelectTree/DialogSelectTree.vue.d.ts +4 -0
- package/dist/src/components/v2/Tree/Tree.vue.d.ts +4 -0
- package/dist/tsv2-library.es.js +70 -46
- package/dist/tsv2-library.umd.js +3 -3
- package/package.json +1 -1
- package/src/components/v2/ButtonSelectTree/ButtonSelectTree.vue.d.ts +4 -0
- package/src/components/v2/DialogSelectTree/DialogSelectTree.vue.d.ts +4 -0
- package/src/components/v2/Tree/Tree.vue.d.ts +4 -0
package/package.json
CHANGED
|
@@ -127,6 +127,10 @@ export interface ButtonSelectTreeProps {
|
|
|
127
127
|
* Defines the group tree to showing disposable groups.
|
|
128
128
|
*/
|
|
129
129
|
showDisposableGroups?: boolean;
|
|
130
|
+
/**
|
|
131
|
+
* The asset quantity already used, to validate the chosen group's available quota.
|
|
132
|
+
*/
|
|
133
|
+
validateQuota?: { assetQuantity: number };
|
|
130
134
|
/**
|
|
131
135
|
* Defines the tree to be flattened and shows disposable only
|
|
132
136
|
*/
|
|
@@ -51,6 +51,10 @@ export interface SelectTreeDialogProps {
|
|
|
51
51
|
* Defines the group tree to showing disposable groups.
|
|
52
52
|
*/
|
|
53
53
|
showDisposableGroups?: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* The asset quantity already used, to validate the chosen group's available quota.
|
|
56
|
+
*/
|
|
57
|
+
validateQuota?: { assetQuantity: number };
|
|
54
58
|
/**
|
|
55
59
|
* Defines the tree to be flattened and shows disposable only
|
|
56
60
|
*/
|
|
@@ -167,6 +167,10 @@ declare class Tree extends ClassComponent<TreeProps, TreeSlots, TreeEmits> {
|
|
|
167
167
|
* Show disposable group icon.
|
|
168
168
|
*/
|
|
169
169
|
showDisposableGroups: boolean;
|
|
170
|
+
/**
|
|
171
|
+
* Show group available quota.
|
|
172
|
+
*/
|
|
173
|
+
showAvailableQuota: boolean;
|
|
170
174
|
/**
|
|
171
175
|
* State where all tree node expanded.
|
|
172
176
|
*/
|