@kokimoki/app 0.2.1 → 0.2.3

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/dist/fields.d.ts CHANGED
@@ -53,7 +53,7 @@ export declare class FormArray<T> extends Field<T[]> {
53
53
  get schema(): {
54
54
  type: string;
55
55
  items: any;
56
- default: T;
56
+ default: T[];
57
57
  };
58
58
  }
59
59
  export declare class TaskField extends Field<Task> {
package/dist/fields.js CHANGED
@@ -81,7 +81,7 @@ export class FormArray extends Field {
81
81
  return {
82
82
  type: "array",
83
83
  items: field.schema,
84
- default: field.value,
84
+ default: this.value,
85
85
  };
86
86
  }
87
87
  }
package/dist/index.d.ts CHANGED
@@ -6,3 +6,4 @@ export * from "./fields";
6
6
  export * from "./kokimoki-client";
7
7
  export * from "./synced-store";
8
8
  export * from "./user-media-handler";
9
+ export * from "./kokimoki-storage";
package/dist/index.js CHANGED
@@ -6,3 +6,4 @@ export * from "./fields";
6
6
  export * from "./kokimoki-client";
7
7
  export * from "./synced-store";
8
8
  export * from "./user-media-handler";
9
+ export * from "./kokimoki-storage";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kokimoki/app",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "type": "module",
5
5
  "description": "Kokimoki app",
6
6
  "main": "dist/index.js",