@stubber/form-fields 1.5.0 → 1.5.1

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.
@@ -0,0 +1,3 @@
1
+ import Form from "./Form.svelte";
2
+ export { Form };
3
+ export type { IFormDependencies, IInitialForm } from "./interfaces";
@@ -0,0 +1,2 @@
1
+ import Form from "./Form.svelte";
2
+ export { Form };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stubber/form-fields",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "An automatic form builder based on field specifications",
5
5
  "keywords": [
6
6
  "components",
@@ -19,6 +19,10 @@
19
19
  ".": {
20
20
  "types": "./dist/index.d.ts",
21
21
  "svelte": "./dist/index.js"
22
+ },
23
+ "./fields2": {
24
+ "types": "./dist/fields2/index.d.ts",
25
+ "svelte": "./dist/fields2/index.js"
22
26
  }
23
27
  },
24
28
  "scripts": {