@fewangsit/wangsvue-fats 1.0.0-alpha.56 → 1.0.0-alpha.57
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.
|
@@ -351,6 +351,10 @@ export interface BaseTreeProps {
|
|
|
351
351
|
* @defaultValue false
|
|
352
352
|
*/
|
|
353
353
|
loading?: boolean | undefined;
|
|
354
|
+
/**
|
|
355
|
+
* Defines the group tree to showing disposable groups.
|
|
356
|
+
*/
|
|
357
|
+
showDisposableGroups?: boolean;
|
|
354
358
|
/**
|
|
355
359
|
* Icon to display when tree is loading.
|
|
356
360
|
* @deprecated since v3.27.0. Use 'loadingicon' slot.
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { TreeSelectionKeys } from 'primevue/tree';
|
|
2
1
|
import { Slot } from 'vue';
|
|
3
2
|
|
|
4
3
|
import { MenuItem } from '../../components/menuitem';
|
|
@@ -7,6 +6,8 @@ import { BaseTreeProps, TreeNode } from '../basetree/BaseTree.vue.d';
|
|
|
7
6
|
import { QueryParams, ShortFetchResponse } from '../datatable/DataTable.vue.d';
|
|
8
7
|
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
|
9
8
|
|
|
9
|
+
import { TreeSelectionKeys } from 'primevue/tree';
|
|
10
|
+
|
|
10
11
|
export interface TreeProps extends BaseTreeProps {
|
|
11
12
|
/**
|
|
12
13
|
* Keyword to filter the Tree by name/label.
|