tauri-kargo-tools 0.1.8 → 0.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tauri-kargo-tools",
3
- "version": "0.1.8",
3
+ "version": "0.2.0",
4
4
  "description": "",
5
5
  "files": ["src"],
6
6
  "exports": { "./*": "./src/*" },
package/src/types.ts CHANGED
@@ -116,6 +116,7 @@ export interface ExplorerFile {
116
116
 
117
117
  export interface ExplorerDirectory {
118
118
  type: "directory";
119
+ name:string;
119
120
  path: string;
120
121
  parent: string | null;
121
122
  content: ExplorerElement[];
package/src/vue.ts CHANGED
@@ -4,7 +4,7 @@ import { HandlerKeys, UINode, Vue } from "./vue-model";
4
4
  const builder: Builder = new Builder()
5
5
  export function boot<T extends object>(
6
6
  model: T,
7
- id: string
7
+ id?: string
8
8
  ): VueRuntime<T> {
9
9
 
10
10
  return builder.boot(model, id);