tsv2-library 0.2.76 → 0.2.78

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.
@@ -106,6 +106,9 @@ export interface Asset {
106
106
  imageSmall: null | 'string';
107
107
  imageMedium: null | 'string';
108
108
  imageBig: null | 'string';
109
+ firstImageSmall?: string;
110
+ firstImageMedium?: string;
111
+ firstImageBig?: string;
109
112
  }
110
113
 
111
114
  /**
@@ -151,6 +151,10 @@ declare class Tree extends ClassComponent<TreeProps, TreeSlots, TreeEmits> {
151
151
  * Method to expand all node.
152
152
  */
153
153
  expandAll: () => void;
154
+ /**
155
+ * Expand the All node to show all Parent Group
156
+ */
157
+ expandNodeAll: () => void;
154
158
  }
155
159
 
156
160
  declare module '@vue/runtime-core' {