tsv2-library 0.1.95 → 0.1.97

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.
@@ -87,6 +87,10 @@ export interface ButtonSelectTreeProps {
87
87
  * Defines the tree is readonly and disabled.
88
88
  */
89
89
  readonly?: boolean;
90
+ /**
91
+ * Defines the group tree to showing disposable groups.
92
+ */
93
+ showDisposableGroups?: boolean;
90
94
  }
91
95
 
92
96
  /**
@@ -30,6 +30,10 @@ export interface SelectTreeDialogProps {
30
30
  * Defines the tree is readonly and disabled.
31
31
  */
32
32
  readonly?: boolean;
33
+ /**
34
+ * Defines the group tree to showing disposable groups.
35
+ */
36
+ showDisposableGroups?: boolean;
33
37
  }
34
38
 
35
39
  type TreeSelectPayload = {
@@ -13,6 +13,7 @@ export type TSVueIcons =
13
13
  | 'arrow-down'
14
14
  | 'arrow-drop-down'
15
15
  | 'arrow-go-back-line'
16
+ | 'arrow-up-s'
16
17
  | 'arrow-left'
17
18
  | 'arrow-left-right'
18
19
  | 'arrow-right'
@@ -1,4 +1,4 @@
1
- import { LinkedAsset } from '../DialogLinkedAsset/DialogLinkedAsset.vue';
1
+ import { LinkedAsset } from '../DialogLinkedAsset/DialogLinkedAsset.vue.d';
2
2
 
3
3
  export interface LinkedAssetMessageProps {
4
4
  /**
@@ -84,6 +84,10 @@ export interface TreeProps {
84
84
  * Defines the tree is readonly and disabled.
85
85
  */
86
86
  readonly?: boolean;
87
+ /**
88
+ * Defines the tree to select disposable group only.
89
+ */
90
+ selectDisposableOnly?: boolean;
87
91
  }
88
92
 
89
93
  export type TreeEmits = {