@sprucelabs/heartwood-view-controllers 119.6.2 → 119.6.4

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 (43) hide show
  1. package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/selectInputChoice.schema.js +2 -2
  2. package/build/.spruce/schemas/schemas.types.d.ts +5 -3
  3. package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/selectInputChoice.schema.js +2 -2
  4. package/build/esm/.spruce/schemas/schemas.types.d.ts +5 -3
  5. package/build/esm/schemas/v2021_02_11/cards/card.builder.d.ts +16 -4
  6. package/build/esm/schemas/v2021_02_11/cards/cardBody.builder.d.ts +12 -3
  7. package/build/esm/schemas/v2021_02_11/cards/cardHeader.builder.d.ts +4 -1
  8. package/build/esm/schemas/v2021_02_11/cards/cardSection.builder.d.ts +12 -3
  9. package/build/esm/schemas/v2021_02_11/dialog.builder.d.ts +16 -4
  10. package/build/esm/schemas/v2021_02_11/formSection.builder.d.ts +4 -1
  11. package/build/esm/schemas/v2021_02_11/forms/bigForm.builder.d.ts +4 -1
  12. package/build/esm/schemas/v2021_02_11/forms/form.builder.d.ts +4 -1
  13. package/build/esm/schemas/v2021_02_11/layout.builder.d.ts +16 -4
  14. package/build/esm/schemas/v2021_02_11/list.builder.d.ts +4 -1
  15. package/build/esm/schemas/v2021_02_11/listCell.builder.d.ts +4 -1
  16. package/build/esm/schemas/v2021_02_11/lockScreen.builder.d.ts +16 -4
  17. package/build/esm/schemas/v2021_02_11/selectInput.builder.d.ts +4 -1
  18. package/build/esm/schemas/v2021_02_11/selectInput.builder.js +4 -1
  19. package/build/esm/schemas/v2021_02_11/skillView.builder.d.ts +16 -4
  20. package/build/esm/schemas/v2021_02_11/toolBelt.builder.d.ts +16 -4
  21. package/build/esm/tests/utilities/vcAssert.js +1 -1
  22. package/build/esm/viewControllers/formBuilder/FieldOptionsMapper.d.ts +2 -2
  23. package/build/esm/webRtcStreaming/WebRtcConnection.js +5 -0
  24. package/build/schemas/v2021_02_11/cards/card.builder.d.ts +16 -4
  25. package/build/schemas/v2021_02_11/cards/cardBody.builder.d.ts +12 -3
  26. package/build/schemas/v2021_02_11/cards/cardHeader.builder.d.ts +4 -1
  27. package/build/schemas/v2021_02_11/cards/cardSection.builder.d.ts +12 -3
  28. package/build/schemas/v2021_02_11/dialog.builder.d.ts +16 -4
  29. package/build/schemas/v2021_02_11/formSection.builder.d.ts +4 -1
  30. package/build/schemas/v2021_02_11/forms/bigForm.builder.d.ts +4 -1
  31. package/build/schemas/v2021_02_11/forms/form.builder.d.ts +4 -1
  32. package/build/schemas/v2021_02_11/layout.builder.d.ts +16 -4
  33. package/build/schemas/v2021_02_11/list.builder.d.ts +4 -1
  34. package/build/schemas/v2021_02_11/listCell.builder.d.ts +4 -1
  35. package/build/schemas/v2021_02_11/lockScreen.builder.d.ts +16 -4
  36. package/build/schemas/v2021_02_11/selectInput.builder.d.ts +4 -1
  37. package/build/schemas/v2021_02_11/selectInput.builder.js +4 -1
  38. package/build/schemas/v2021_02_11/skillView.builder.d.ts +16 -4
  39. package/build/schemas/v2021_02_11/toolBelt.builder.d.ts +16 -4
  40. package/build/tests/utilities/vcAssert.js +1 -1
  41. package/build/viewControllers/formBuilder/FieldOptionsMapper.d.ts +2 -2
  42. package/build/webRtcStreaming/WebRtcConnection.js +5 -0
  43. package/package.json +1 -1
@@ -10,9 +10,9 @@ const selectInputChoiceSchema = {
10
10
  fields: {
11
11
  /** . */
12
12
  'value': {
13
- type: 'text',
13
+ type: 'raw',
14
14
  isRequired: true,
15
- options: undefined
15
+ options: { valueType: `string | number`, }
16
16
  },
17
17
  /** . */
18
18
  'label': {
@@ -12039,7 +12039,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
12039
12039
  }
12040
12040
  namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
12041
12041
  interface SelectInputChoice {
12042
- 'value': string;
12042
+ 'value': (string | number);
12043
12043
  'label': string;
12044
12044
  }
12045
12045
  interface SelectInputChoiceSchema extends SpruceSchema.Schema {
@@ -12051,9 +12051,11 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
12051
12051
  fields: {
12052
12052
  /** . */
12053
12053
  'value': {
12054
- type: 'text';
12054
+ type: 'raw';
12055
12055
  isRequired: true;
12056
- options: undefined;
12056
+ options: {
12057
+ valueType: `string | number`;
12058
+ };
12057
12059
  };
12058
12060
  /** . */
12059
12061
  'label': {
@@ -8,9 +8,9 @@ const selectInputChoiceSchema = {
8
8
  fields: {
9
9
  /** . */
10
10
  'value': {
11
- type: 'text',
11
+ type: 'raw',
12
12
  isRequired: true,
13
- options: undefined
13
+ options: { valueType: `string | number`, }
14
14
  },
15
15
  /** . */
16
16
  'label': {
@@ -12039,7 +12039,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
12039
12039
  }
12040
12040
  namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
12041
12041
  interface SelectInputChoice {
12042
- 'value': string;
12042
+ 'value': (string | number);
12043
12043
  'label': string;
12044
12044
  }
12045
12045
  interface SelectInputChoiceSchema extends SpruceSchema.Schema {
@@ -12051,9 +12051,11 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
12051
12051
  fields: {
12052
12052
  /** . */
12053
12053
  'value': {
12054
- type: 'text';
12054
+ type: 'raw';
12055
12055
  isRequired: true;
12056
- options: undefined;
12056
+ options: {
12057
+ valueType: `string | number`;
12058
+ };
12057
12059
  };
12058
12060
  /** . */
12059
12061
  'label': {
@@ -3218,8 +3218,11 @@ declare const _default: {
3218
3218
  id: string;
3219
3219
  fields: {
3220
3220
  value: {
3221
- type: "text";
3221
+ type: "raw";
3222
3222
  isRequired: true;
3223
+ options: {
3224
+ valueType: string;
3225
+ };
3223
3226
  };
3224
3227
  label: {
3225
3228
  type: "text";
@@ -10309,8 +10312,11 @@ declare const _default: {
10309
10312
  id: string;
10310
10313
  fields: {
10311
10314
  value: {
10312
- type: "text";
10315
+ type: "raw";
10313
10316
  isRequired: true;
10317
+ options: {
10318
+ valueType: string;
10319
+ };
10314
10320
  };
10315
10321
  label: {
10316
10322
  type: "text";
@@ -17398,8 +17404,11 @@ declare const _default: {
17398
17404
  id: string;
17399
17405
  fields: {
17400
17406
  value: {
17401
- type: "text";
17407
+ type: "raw";
17402
17408
  isRequired: true;
17409
+ options: {
17410
+ valueType: string;
17411
+ };
17403
17412
  };
17404
17413
  label: {
17405
17414
  type: "text";
@@ -24442,8 +24451,11 @@ declare const _default: {
24442
24451
  id: string;
24443
24452
  fields: {
24444
24453
  value: {
24445
- type: "text";
24454
+ type: "raw";
24446
24455
  isRequired: true;
24456
+ options: {
24457
+ valueType: string;
24458
+ };
24447
24459
  };
24448
24460
  label: {
24449
24461
  type: "text";
@@ -3273,8 +3273,11 @@ declare const _default: {
3273
3273
  id: string;
3274
3274
  fields: {
3275
3275
  value: {
3276
- type: "text";
3276
+ type: "raw";
3277
3277
  isRequired: true;
3278
+ options: {
3279
+ valueType: string;
3280
+ };
3278
3281
  };
3279
3282
  label: {
3280
3283
  type: "text";
@@ -10362,8 +10365,11 @@ declare const _default: {
10362
10365
  id: string;
10363
10366
  fields: {
10364
10367
  value: {
10365
- type: "text";
10368
+ type: "raw";
10366
10369
  isRequired: true;
10370
+ options: {
10371
+ valueType: string;
10372
+ };
10367
10373
  };
10368
10374
  label: {
10369
10375
  type: "text";
@@ -17406,8 +17412,11 @@ declare const _default: {
17406
17412
  id: string;
17407
17413
  fields: {
17408
17414
  value: {
17409
- type: "text";
17415
+ type: "raw";
17410
17416
  isRequired: true;
17417
+ options: {
17418
+ valueType: string;
17419
+ };
17411
17420
  };
17412
17421
  label: {
17413
17422
  type: "text";
@@ -3195,8 +3195,11 @@ declare const _default: {
3195
3195
  id: string;
3196
3196
  fields: {
3197
3197
  value: {
3198
- type: "text";
3198
+ type: "raw";
3199
3199
  isRequired: true;
3200
+ options: {
3201
+ valueType: string;
3202
+ };
3200
3203
  };
3201
3204
  label: {
3202
3205
  type: "text";
@@ -3223,8 +3223,11 @@ declare const _default: {
3223
3223
  id: string;
3224
3224
  fields: {
3225
3225
  value: {
3226
- type: "text";
3226
+ type: "raw";
3227
3227
  isRequired: true;
3228
+ options: {
3229
+ valueType: string;
3230
+ };
3228
3231
  };
3229
3232
  label: {
3230
3233
  type: "text";
@@ -10312,8 +10315,11 @@ declare const _default: {
10312
10315
  id: string;
10313
10316
  fields: {
10314
10317
  value: {
10315
- type: "text";
10318
+ type: "raw";
10316
10319
  isRequired: true;
10320
+ options: {
10321
+ valueType: string;
10322
+ };
10317
10323
  };
10318
10324
  label: {
10319
10325
  type: "text";
@@ -17356,8 +17362,11 @@ declare const _default: {
17356
17362
  id: string;
17357
17363
  fields: {
17358
17364
  value: {
17359
- type: "text";
17365
+ type: "raw";
17360
17366
  isRequired: true;
17367
+ options: {
17368
+ valueType: string;
17369
+ };
17361
17370
  };
17362
17371
  label: {
17363
17372
  type: "text";
@@ -3249,8 +3249,11 @@ declare const _default: {
3249
3249
  id: string;
3250
3250
  fields: {
3251
3251
  value: {
3252
- type: "text";
3252
+ type: "raw";
3253
3253
  isRequired: true;
3254
+ options: {
3255
+ valueType: string;
3256
+ };
3254
3257
  };
3255
3258
  label: {
3256
3259
  type: "text";
@@ -10340,8 +10343,11 @@ declare const _default: {
10340
10343
  id: string;
10341
10344
  fields: {
10342
10345
  value: {
10343
- type: "text";
10346
+ type: "raw";
10344
10347
  isRequired: true;
10348
+ options: {
10349
+ valueType: string;
10350
+ };
10345
10351
  };
10346
10352
  label: {
10347
10353
  type: "text";
@@ -17429,8 +17435,11 @@ declare const _default: {
17429
17435
  id: string;
17430
17436
  fields: {
17431
17437
  value: {
17432
- type: "text";
17438
+ type: "raw";
17433
17439
  isRequired: true;
17440
+ options: {
17441
+ valueType: string;
17442
+ };
17434
17443
  };
17435
17444
  label: {
17436
17445
  type: "text";
@@ -24473,8 +24482,11 @@ declare const _default: {
24473
24482
  id: string;
24474
24483
  fields: {
24475
24484
  value: {
24476
- type: "text";
24485
+ type: "raw";
24477
24486
  isRequired: true;
24487
+ options: {
24488
+ valueType: string;
24489
+ };
24478
24490
  };
24479
24491
  label: {
24480
24492
  type: "text";
@@ -3029,8 +3029,11 @@ declare const _default: {
3029
3029
  id: string;
3030
3030
  fields: {
3031
3031
  value: {
3032
- type: "text";
3032
+ type: "raw";
3033
3033
  isRequired: true;
3034
+ options: {
3035
+ valueType: string;
3036
+ };
3034
3037
  };
3035
3038
  label: {
3036
3039
  type: "text";
@@ -3220,8 +3220,11 @@ declare const _default: {
3220
3220
  id: string;
3221
3221
  fields: {
3222
3222
  value: {
3223
- type: "text";
3223
+ type: "raw";
3224
3224
  isRequired: true;
3225
+ options: {
3226
+ valueType: string;
3227
+ };
3225
3228
  };
3226
3229
  label: {
3227
3230
  type: "text";
@@ -3145,8 +3145,11 @@ declare const _default: {
3145
3145
  id: string;
3146
3146
  fields: {
3147
3147
  value: {
3148
- type: "text";
3148
+ type: "raw";
3149
3149
  isRequired: true;
3150
+ options: {
3151
+ valueType: string;
3152
+ };
3150
3153
  };
3151
3154
  label: {
3152
3155
  type: "text";
@@ -3229,8 +3229,11 @@ declare const _default: {
3229
3229
  id: string;
3230
3230
  fields: {
3231
3231
  value: {
3232
- type: "text";
3232
+ type: "raw";
3233
3233
  isRequired: true;
3234
+ options: {
3235
+ valueType: string;
3236
+ };
3234
3237
  };
3235
3238
  label: {
3236
3239
  type: "text";
@@ -10320,8 +10323,11 @@ declare const _default: {
10320
10323
  id: string;
10321
10324
  fields: {
10322
10325
  value: {
10323
- type: "text";
10326
+ type: "raw";
10324
10327
  isRequired: true;
10328
+ options: {
10329
+ valueType: string;
10330
+ };
10325
10331
  };
10326
10332
  label: {
10327
10333
  type: "text";
@@ -17409,8 +17415,11 @@ declare const _default: {
17409
17415
  id: string;
17410
17416
  fields: {
17411
17417
  value: {
17412
- type: "text";
17418
+ type: "raw";
17413
17419
  isRequired: true;
17420
+ options: {
17421
+ valueType: string;
17422
+ };
17414
17423
  };
17415
17424
  label: {
17416
17425
  type: "text";
@@ -24453,8 +24462,11 @@ declare const _default: {
24453
24462
  id: string;
24454
24463
  fields: {
24455
24464
  value: {
24456
- type: "text";
24465
+ type: "raw";
24457
24466
  isRequired: true;
24467
+ options: {
24468
+ valueType: string;
24469
+ };
24458
24470
  };
24459
24471
  label: {
24460
24472
  type: "text";
@@ -2972,8 +2972,11 @@ declare const _default: {
2972
2972
  id: string;
2973
2973
  fields: {
2974
2974
  value: {
2975
- type: "text";
2975
+ type: "raw";
2976
2976
  isRequired: true;
2977
+ options: {
2978
+ valueType: string;
2979
+ };
2977
2980
  };
2978
2981
  label: {
2979
2982
  type: "text";
@@ -2894,8 +2894,11 @@ declare const _default: {
2894
2894
  id: string;
2895
2895
  fields: {
2896
2896
  value: {
2897
- type: "text";
2897
+ type: "raw";
2898
2898
  isRequired: true;
2899
+ options: {
2900
+ valueType: string;
2901
+ };
2899
2902
  };
2900
2903
  label: {
2901
2904
  type: "text";
@@ -3274,8 +3274,11 @@ declare const _default: {
3274
3274
  id: string;
3275
3275
  fields: {
3276
3276
  value: {
3277
- type: "text";
3277
+ type: "raw";
3278
3278
  isRequired: true;
3279
+ options: {
3280
+ valueType: string;
3281
+ };
3279
3282
  };
3280
3283
  label: {
3281
3284
  type: "text";
@@ -10365,8 +10368,11 @@ declare const _default: {
10365
10368
  id: string;
10366
10369
  fields: {
10367
10370
  value: {
10368
- type: "text";
10371
+ type: "raw";
10369
10372
  isRequired: true;
10373
+ options: {
10374
+ valueType: string;
10375
+ };
10370
10376
  };
10371
10377
  label: {
10372
10378
  type: "text";
@@ -17454,8 +17460,11 @@ declare const _default: {
17454
17460
  id: string;
17455
17461
  fields: {
17456
17462
  value: {
17457
- type: "text";
17463
+ type: "raw";
17458
17464
  isRequired: true;
17465
+ options: {
17466
+ valueType: string;
17467
+ };
17459
17468
  };
17460
17469
  label: {
17461
17470
  type: "text";
@@ -24498,8 +24507,11 @@ declare const _default: {
24498
24507
  id: string;
24499
24508
  fields: {
24500
24509
  value: {
24501
- type: "text";
24510
+ type: "raw";
24502
24511
  isRequired: true;
24512
+ options: {
24513
+ valueType: string;
24514
+ };
24503
24515
  };
24504
24516
  label: {
24505
24517
  type: "text";
@@ -19,8 +19,11 @@ declare const _default: {
19
19
  id: string;
20
20
  fields: {
21
21
  value: {
22
- type: "text";
22
+ type: "raw";
23
23
  isRequired: true;
24
+ options: {
25
+ valueType: string;
26
+ };
24
27
  };
25
28
  label: {
26
29
  type: "text";
@@ -20,8 +20,11 @@ export default buildSchema({
20
20
  id: 'selectInputChoice',
21
21
  fields: {
22
22
  value: {
23
- type: 'text',
23
+ type: 'raw',
24
24
  isRequired: true,
25
+ options: {
26
+ valueType: 'string | number',
27
+ },
25
28
  },
26
29
  label: {
27
30
  type: 'text',
@@ -3268,8 +3268,11 @@ declare const _default: {
3268
3268
  id: string;
3269
3269
  fields: {
3270
3270
  value: {
3271
- type: "text";
3271
+ type: "raw";
3272
3272
  isRequired: true;
3273
+ options: {
3274
+ valueType: string;
3275
+ };
3273
3276
  };
3274
3277
  label: {
3275
3278
  type: "text";
@@ -10359,8 +10362,11 @@ declare const _default: {
10359
10362
  id: string;
10360
10363
  fields: {
10361
10364
  value: {
10362
- type: "text";
10365
+ type: "raw";
10363
10366
  isRequired: true;
10367
+ options: {
10368
+ valueType: string;
10369
+ };
10364
10370
  };
10365
10371
  label: {
10366
10372
  type: "text";
@@ -17448,8 +17454,11 @@ declare const _default: {
17448
17454
  id: string;
17449
17455
  fields: {
17450
17456
  value: {
17451
- type: "text";
17457
+ type: "raw";
17452
17458
  isRequired: true;
17459
+ options: {
17460
+ valueType: string;
17461
+ };
17453
17462
  };
17454
17463
  label: {
17455
17464
  type: "text";
@@ -24492,8 +24501,11 @@ declare const _default: {
24492
24501
  id: string;
24493
24502
  fields: {
24494
24503
  value: {
24495
- type: "text";
24504
+ type: "raw";
24496
24505
  isRequired: true;
24506
+ options: {
24507
+ valueType: string;
24508
+ };
24497
24509
  };
24498
24510
  label: {
24499
24511
  type: "text";