@formspec/dsl 0.1.0-alpha.11 → 0.1.0-alpha.12

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 +0 -6
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -294,12 +294,6 @@ Use `@formspec/dsl` when:
294
294
  - **Full type inference needed** - Deriving TypeScript types from form definitions
295
295
  - **No build step preferred** - Works directly at runtime without CLI codegen
296
296
 
297
- Consider `@formspec/decorators` when:
298
-
299
- - **Class-based forms preferred** - Using TypeScript classes with property decorators
300
- - **Type inference from existing types** - Leveraging existing TypeScript class types
301
- - **Static analysis available** - Using the CLI for build-time schema generation
302
-
303
297
  ## API Reference
304
298
 
305
299
  ### Functions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@formspec/dsl",
3
- "version": "0.1.0-alpha.11",
3
+ "version": "0.1.0-alpha.12",
4
4
  "description": "DSL functions for defining FormSpec forms",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -18,7 +18,7 @@
18
18
  "README.md"
19
19
  ],
20
20
  "dependencies": {
21
- "@formspec/core": "0.1.0-alpha.11"
21
+ "@formspec/core": "0.1.0-alpha.12"
22
22
  },
23
23
  "devDependencies": {
24
24
  "tsd": "^0.31.0",