@formspec/dsl 0.1.0-alpha.23 → 0.1.0-alpha.26

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.
@@ -207,7 +207,9 @@ export declare interface DynamicSchemaField<N extends string> {
207
207
  * @public
208
208
  */
209
209
  export declare interface EnumOption {
210
+ /** Stored enum value written into submitted data. */
210
211
  readonly id: string;
212
+ /** Human-readable label shown to end users. */
211
213
  readonly label: string;
212
214
  }
213
215
 
@@ -207,7 +207,9 @@ export declare interface DynamicSchemaField<N extends string> {
207
207
  * @public
208
208
  */
209
209
  export declare interface EnumOption {
210
+ /** Stored enum value written into submitted data. */
210
211
  readonly id: string;
212
+ /** Human-readable label shown to end users. */
211
213
  readonly label: string;
212
214
  }
213
215
 
@@ -207,7 +207,9 @@ export declare interface DynamicSchemaField<N extends string> {
207
207
  * @public
208
208
  */
209
209
  export declare interface EnumOption {
210
+ /** Stored enum value written into submitted data. */
210
211
  readonly id: string;
212
+ /** Human-readable label shown to end users. */
211
213
  readonly label: string;
212
214
  }
213
215
 
package/dist/dsl.d.ts CHANGED
@@ -207,7 +207,9 @@ export declare interface DynamicSchemaField<N extends string> {
207
207
  * @public
208
208
  */
209
209
  export declare interface EnumOption {
210
+ /** Stored enum value written into submitted data. */
210
211
  readonly id: string;
212
+ /** Human-readable label shown to end users. */
211
213
  readonly label: string;
212
214
  }
213
215
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@formspec/dsl",
3
- "version": "0.1.0-alpha.23",
3
+ "version": "0.1.0-alpha.26",
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.23"
21
+ "@formspec/core": "0.1.0-alpha.26"
22
22
  },
23
23
  "devDependencies": {
24
24
  "tsd": "^0.31.0",