vue-apextree 2.0.0-beta.1 → 2.0.0

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -41,7 +41,7 @@ export { ApexTreeExposed }
41
41
  * props for the ApexTreeChart Vue component.
42
42
  * onNodeClick is omitted from options; use the @node-click emit instead.
43
43
  */
44
- export declare interface ApexTreeProps<T = undefined> {
44
+ export declare interface ApexTreeProps<T = unknown> {
45
45
  /** Tree data structure */
46
46
  data: NestedNode<T>;
47
47
  /** Configuration options — imported from core apextree, zero local re-definition */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-apextree",
3
- "version": "2.0.0-beta.1",
3
+ "version": "2.0.0",
4
4
  "description": "Vue wrapper for ApexTree - a JavaScript library for creating organizational and hierarchical charts",
5
5
  "author": "ApexCharts <info@apexcharts.com>",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -59,4 +59,4 @@
59
59
  "vue": "^3.5.13",
60
60
  "vue-tsc": "^2.2.0"
61
61
  }
62
- }
62
+ }