mlform 0.1.14 → 0.1.15

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/README.md +2 -2
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -9,7 +9,7 @@ Schema-driven forms for machine learning applications.
9
9
 
10
10
  MLForm gives you a predictable UI layer between users and model backends. You describe inputs and reports with a schema, MLForm renders accessible Web Components, validates values, submits structured payloads, and displays model results in the same host container.
11
11
 
12
- Version `0.1.14` is the current release in this repository.
12
+ Version `0.1.15` is the current release in this repository.
13
13
 
14
14
  ## Why MLForm
15
15
 
@@ -306,7 +306,7 @@ The main package targets Node.js `>=24.9.0`.
306
306
 
307
307
  ## Release Notes
308
308
 
309
- For `0.1.14`, use the repository release entry and the published docs as the source of truth:
309
+ For `0.1.15`, use the repository release entry and the published docs as the source of truth:
310
310
 
311
311
  - GitHub releases: https://github.com/UlloaSP/mlform/releases
312
312
  - npm package: https://www.npmjs.com/package/mlform
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mlform",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "private": false,
5
5
  "description": "Composable form generation utilities for machine learning backend integration",
6
6
  "keywords": [
@@ -52,31 +52,31 @@
52
52
  "type": "module",
53
53
  "exports": {
54
54
  "./kit": {
55
- "types": "./dist/types/kit/index.d.ts",
55
+ "types": "./dist/types/src/kit/index.d.ts",
56
56
  "import": "./dist/mlform/kit.mjs"
57
57
  },
58
58
  "./runtime": {
59
- "types": "./dist/types/runtime/index.d.ts",
59
+ "types": "./dist/types/src/runtime/index.d.ts",
60
60
  "import": "./dist/mlform/runtime.mjs"
61
61
  },
62
62
  "./schema": {
63
- "types": "./dist/types/schema/index.d.ts",
63
+ "types": "./dist/types/src/schema/index.d.ts",
64
64
  "import": "./dist/mlform/schema.mjs"
65
65
  },
66
66
  "./builtins": {
67
- "types": "./dist/types/builtins/index.d.ts",
67
+ "types": "./dist/types/src/builtins/index.d.ts",
68
68
  "import": "./dist/mlform/builtins.mjs"
69
69
  },
70
70
  "./transport": {
71
- "types": "./dist/types/transport/index.d.ts",
71
+ "types": "./dist/types/src/transport/index.d.ts",
72
72
  "import": "./dist/mlform/transport.mjs"
73
73
  },
74
74
  "./primitives": {
75
- "types": "./dist/types/primitives/index.d.ts",
75
+ "types": "./dist/types/src/primitives/index.d.ts",
76
76
  "import": "./dist/mlform/primitives.mjs"
77
77
  },
78
78
  "./design": {
79
- "types": "./dist/types/design/index.d.ts",
79
+ "types": "./dist/types/src/design/index.d.ts",
80
80
  "import": "./dist/mlform/design.mjs"
81
81
  }
82
82
  },