@remoteoss/json-schema-form 1.0.0-beta.4 → 1.0.0-beta.5

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 -1
package/dist/index.d.ts CHANGED
@@ -183,4 +183,4 @@ declare function modifySchema(originalSchema: JsfSchema, config: ModifyConfig):
183
183
  warnings: (Warning | null)[];
184
184
  };
185
185
 
186
- export { type CreateHeadlessFormOptions, type ValidationOptions, createHeadlessForm, modifySchema as modify };
186
+ export { type CreateHeadlessFormOptions, type Field, type FieldType, type FormErrors, type ValidationOptions, type ValidationResult, createHeadlessForm, modifySchema as modify };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@remoteoss/json-schema-form",
3
3
  "type": "module",
4
- "version": "1.0.0-beta.4",
4
+ "version": "1.0.0-beta.5",
5
5
  "packageManager": "pnpm@9.15.2",
6
6
  "description": "WIP V2 – Headless UI form powered by JSON Schemas",
7
7
  "author": "Remote.com <engineering@remote.com> (https://remote.com/)",
@@ -19,6 +19,7 @@
19
19
  ],
20
20
  "main": "dist/index.mjs",
21
21
  "module": "dist/index.mjs",
22
+ "types": "dist/index.d.ts",
22
23
  "files": [
23
24
  "README.md",
24
25
  "dist"