@fewangsit/wangsvue-fats 1.0.0-alpha.55 → 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.
@@ -196,6 +196,13 @@ export interface ImageProps {
196
196
  * The thumbnail image.
197
197
  */
198
198
  src?: string | Blob;
199
+
200
+ /**
201
+ * Wether use preview full image functionality
202
+ *
203
+ * @default true
204
+ */
205
+ preview?: boolean;
199
206
  /**
200
207
  * The thumbnail image width.
201
208
  *
@@ -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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fewangsit/wangsvue-fats",
3
- "version": "1.0.0-alpha.55",
3
+ "version": "1.0.0-alpha.57",
4
4
  "author": "Wangsit FE Developer",
5
5
  "description": "Fixed Asset Tagsamurai VueJS Component Library",
6
6
  "type": "module",