@steveesamson/microform 1.0.6 → 1.0.7

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.
@@ -2,6 +2,7 @@ import { writable, derived, get } from 'svelte/store';
2
2
  import { formAction } from './form-action.js';
3
3
  import { bindStateToStore } from "./utils.js";
4
4
  const microform = (props) => {
5
+ // form default values
5
6
  const data = props?.data || {};
6
7
  // form values
7
8
  const _values = writable({ ...data });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steveesamson/microform",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "postbuild": "touch ./docs/.nojekyll",