tsv2-library 1.0.61-alpha.27 → 1.0.61-alpha.29

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.0.61-alpha.27",
4
+ "version": "1.0.61-alpha.29",
5
5
  "license": "ISC",
6
6
  "homepage": "https://github.com/fixedassetv2-fe/tsv2-library#readme",
7
7
  "repository": {
@@ -76,6 +76,10 @@ export type SelectTreeDialogEmits = {
76
76
  'hide': [];
77
77
  };
78
78
 
79
+ export interface SelectTreeDialogSlots {
80
+ description: VNode[];
81
+ }
82
+
79
83
  /**
80
84
  * **TSVue v2 - SelectTreeDialog**
81
85
  *
@@ -86,7 +90,7 @@ export type SelectTreeDialogEmits = {
86
90
  */
87
91
  declare class SelectTreeDialog extends ClassComponent<
88
92
  SelectTreeDialogProps,
89
- Record<string, unknown>,
93
+ SelectTreeDialogSlots,
90
94
  SelectTreeDialogEmits
91
95
  > {}
92
96