tsv2-library 1.1.0-dev-alpha.48 → 1.1.0-dev-alpha.49

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tsv2-library",
3
3
  "author": "fixedassetv2-fe",
4
- "version": "1.1.0-dev-alpha.48",
4
+ "version": "1.1.0-dev-alpha.49",
5
5
  "license": "ISC",
6
6
  "homepage": "https://github.com/fixedassetv2-fe/tsv2-library#readme",
7
7
  "repository": {
@@ -136,7 +136,7 @@ export interface ButtonSelectTreeProps {
136
136
  */
137
137
  validateQuota?: {
138
138
  assetQuantity: number;
139
- countAvailableQuota?: (node: any) => number;
139
+ countAvailableQuota?: (node?: any) => number;
140
140
  };
141
141
  /**
142
142
  * Defines the tree to be flattened and shows disposable only
@@ -60,7 +60,7 @@ export interface SelectTreeDialogProps {
60
60
  */
61
61
  validateQuota?: {
62
62
  assetQuantity: number;
63
- countAvailableQuota?: (node: any) => number;
63
+ countAvailableQuota?: (node?: any) => number;
64
64
  };
65
65
  /**
66
66
  * Defines the tree to be flattened and shows disposable only
@@ -189,7 +189,7 @@ declare class Tree extends ClassComponent<TreeProps, TreeSlots, TreeEmits> {
189
189
  /**
190
190
  * Function to count available quota
191
191
  */
192
- countAvailableQuota?: (node: any) => number;
192
+ countAvailableQuota?: (node?: any) => number;
193
193
  /**
194
194
  * State where all tree node expanded.
195
195
  */