@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.
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/selectInputChoice.schema.js +2 -2
- package/build/.spruce/schemas/schemas.types.d.ts +5 -3
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/selectInputChoice.schema.js +2 -2
- package/build/esm/.spruce/schemas/schemas.types.d.ts +5 -3
- package/build/esm/schemas/v2021_02_11/cards/card.builder.d.ts +16 -4
- package/build/esm/schemas/v2021_02_11/cards/cardBody.builder.d.ts +12 -3
- package/build/esm/schemas/v2021_02_11/cards/cardHeader.builder.d.ts +4 -1
- package/build/esm/schemas/v2021_02_11/cards/cardSection.builder.d.ts +12 -3
- package/build/esm/schemas/v2021_02_11/dialog.builder.d.ts +16 -4
- package/build/esm/schemas/v2021_02_11/formSection.builder.d.ts +4 -1
- package/build/esm/schemas/v2021_02_11/forms/bigForm.builder.d.ts +4 -1
- package/build/esm/schemas/v2021_02_11/forms/form.builder.d.ts +4 -1
- package/build/esm/schemas/v2021_02_11/layout.builder.d.ts +16 -4
- package/build/esm/schemas/v2021_02_11/list.builder.d.ts +4 -1
- package/build/esm/schemas/v2021_02_11/listCell.builder.d.ts +4 -1
- package/build/esm/schemas/v2021_02_11/lockScreen.builder.d.ts +16 -4
- package/build/esm/schemas/v2021_02_11/selectInput.builder.d.ts +4 -1
- package/build/esm/schemas/v2021_02_11/selectInput.builder.js +4 -1
- package/build/esm/schemas/v2021_02_11/skillView.builder.d.ts +16 -4
- package/build/esm/schemas/v2021_02_11/toolBelt.builder.d.ts +16 -4
- package/build/esm/tests/utilities/vcAssert.js +1 -1
- package/build/esm/viewControllers/formBuilder/FieldOptionsMapper.d.ts +2 -2
- package/build/esm/webRtcStreaming/WebRtcConnection.js +5 -0
- package/build/schemas/v2021_02_11/cards/card.builder.d.ts +16 -4
- package/build/schemas/v2021_02_11/cards/cardBody.builder.d.ts +12 -3
- package/build/schemas/v2021_02_11/cards/cardHeader.builder.d.ts +4 -1
- package/build/schemas/v2021_02_11/cards/cardSection.builder.d.ts +12 -3
- package/build/schemas/v2021_02_11/dialog.builder.d.ts +16 -4
- package/build/schemas/v2021_02_11/formSection.builder.d.ts +4 -1
- package/build/schemas/v2021_02_11/forms/bigForm.builder.d.ts +4 -1
- package/build/schemas/v2021_02_11/forms/form.builder.d.ts +4 -1
- package/build/schemas/v2021_02_11/layout.builder.d.ts +16 -4
- package/build/schemas/v2021_02_11/list.builder.d.ts +4 -1
- package/build/schemas/v2021_02_11/listCell.builder.d.ts +4 -1
- package/build/schemas/v2021_02_11/lockScreen.builder.d.ts +16 -4
- package/build/schemas/v2021_02_11/selectInput.builder.d.ts +4 -1
- package/build/schemas/v2021_02_11/selectInput.builder.js +4 -1
- package/build/schemas/v2021_02_11/skillView.builder.d.ts +16 -4
- package/build/schemas/v2021_02_11/toolBelt.builder.d.ts +16 -4
- package/build/tests/utilities/vcAssert.js +1 -1
- package/build/viewControllers/formBuilder/FieldOptionsMapper.d.ts +2 -2
- package/build/webRtcStreaming/WebRtcConnection.js +5 -0
- package/package.json +1 -1
|
@@ -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: '
|
|
12054
|
+
type: 'raw';
|
|
12055
12055
|
isRequired: true;
|
|
12056
|
-
options:
|
|
12056
|
+
options: {
|
|
12057
|
+
valueType: `string | number`;
|
|
12058
|
+
};
|
|
12057
12059
|
};
|
|
12058
12060
|
/** . */
|
|
12059
12061
|
'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: '
|
|
12054
|
+
type: 'raw';
|
|
12055
12055
|
isRequired: true;
|
|
12056
|
-
options:
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
17415
|
+
type: "raw";
|
|
17410
17416
|
isRequired: true;
|
|
17417
|
+
options: {
|
|
17418
|
+
valueType: string;
|
|
17419
|
+
};
|
|
17411
17420
|
};
|
|
17412
17421
|
label: {
|
|
17413
17422
|
type: "text";
|
|
@@ -3223,8 +3223,11 @@ declare const _default: {
|
|
|
3223
3223
|
id: string;
|
|
3224
3224
|
fields: {
|
|
3225
3225
|
value: {
|
|
3226
|
-
type: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
24485
|
+
type: "raw";
|
|
24477
24486
|
isRequired: true;
|
|
24487
|
+
options: {
|
|
24488
|
+
valueType: string;
|
|
24489
|
+
};
|
|
24478
24490
|
};
|
|
24479
24491
|
label: {
|
|
24480
24492
|
type: "text";
|
|
@@ -3229,8 +3229,11 @@ declare const _default: {
|
|
|
3229
3229
|
id: string;
|
|
3230
3230
|
fields: {
|
|
3231
3231
|
value: {
|
|
3232
|
-
type: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
24465
|
+
type: "raw";
|
|
24457
24466
|
isRequired: true;
|
|
24467
|
+
options: {
|
|
24468
|
+
valueType: string;
|
|
24469
|
+
};
|
|
24458
24470
|
};
|
|
24459
24471
|
label: {
|
|
24460
24472
|
type: "text";
|
|
@@ -3274,8 +3274,11 @@ declare const _default: {
|
|
|
3274
3274
|
id: string;
|
|
3275
3275
|
fields: {
|
|
3276
3276
|
value: {
|
|
3277
|
-
type: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
24510
|
+
type: "raw";
|
|
24502
24511
|
isRequired: true;
|
|
24512
|
+
options: {
|
|
24513
|
+
valueType: string;
|
|
24514
|
+
};
|
|
24503
24515
|
};
|
|
24504
24516
|
label: {
|
|
24505
24517
|
type: "text";
|
|
@@ -3268,8 +3268,11 @@ declare const _default: {
|
|
|
3268
3268
|
id: string;
|
|
3269
3269
|
fields: {
|
|
3270
3270
|
value: {
|
|
3271
|
-
type: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
24504
|
+
type: "raw";
|
|
24496
24505
|
isRequired: true;
|
|
24506
|
+
options: {
|
|
24507
|
+
valueType: string;
|
|
24508
|
+
};
|
|
24497
24509
|
};
|
|
24498
24510
|
label: {
|
|
24499
24511
|
type: "text";
|