@dmptool/types 2.3.2 → 3.0.0
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/dist/dmp/index.d.ts +2 -2
- package/dist/dmp/index.js +65 -50
- package/dist/questions/__tests__/defaults.spec.js +12 -12
- package/dist/questions/__tests__/optionBasedQuestions.spec.js +3 -3
- package/dist/questions/index.d.ts +22 -5
- package/dist/questions/index.js +2 -2
- package/dist/questions/optionBasedQuestions.d.ts +8 -2
- package/dist/questions/optionBasedQuestions.js +6 -6
- package/dist/questions/tableQuestions.d.ts +77 -8
- package/dist/questions/tableQuestions.js +3 -3
- package/dist/questions/textQuestions.d.ts +8 -0
- package/dist/questions/textQuestions.js +1 -1
- package/dist/schemas/anyQuestion.schema.json +64 -9
- package/dist/schemas/anyTableColumnQuestion.schema.json +22 -3
- package/dist/schemas/checkboxesQuestion.schema.json +2 -3
- package/dist/schemas/emailQuestion.schema.json +3 -0
- package/dist/schemas/multiselectBoxQuestion.schema.json +4 -0
- package/dist/schemas/radioButtonsQuestion.schema.json +4 -0
- package/dist/schemas/researchOutputTableQuestion.schema.json +1455 -61
- package/dist/schemas/selectBoxQuestion.schema.json +4 -0
- package/dist/schemas/tableQuestion.schema.json +22 -3
- package/dist/schemas/textAreaQuestion.schema.json +3 -0
- package/dist/schemas/textQuestion.schema.json +3 -0
- package/dist/schemas/urlQuestion.schema.json +3 -0
- package/package.json +2 -2
- package/schemas/anyQuestion.schema.json +64 -9
- package/schemas/anyTableColumnQuestion.schema.json +22 -3
- package/schemas/checkboxesQuestion.schema.json +2 -3
- package/schemas/emailQuestion.schema.json +3 -0
- package/schemas/multiselectBoxQuestion.schema.json +4 -0
- package/schemas/radioButtonsQuestion.schema.json +4 -0
- package/schemas/researchOutputTableQuestion.schema.json +1455 -61
- package/schemas/selectBoxQuestion.schema.json +4 -0
- package/schemas/tableQuestion.schema.json +22 -3
- package/schemas/textAreaQuestion.schema.json +3 -0
- package/schemas/textQuestion.schema.json +3 -0
- package/schemas/urlQuestion.schema.json +3 -0
|
@@ -337,15 +337,14 @@
|
|
|
337
337
|
"description": {
|
|
338
338
|
"type": "string"
|
|
339
339
|
},
|
|
340
|
-
"
|
|
340
|
+
"selected": {
|
|
341
341
|
"default": false,
|
|
342
342
|
"type": "boolean"
|
|
343
343
|
}
|
|
344
344
|
},
|
|
345
345
|
"required": [
|
|
346
346
|
"label",
|
|
347
|
-
"value"
|
|
348
|
-
"checked"
|
|
347
|
+
"value"
|
|
349
348
|
],
|
|
350
349
|
"additionalProperties": false
|
|
351
350
|
}
|
|
@@ -651,6 +650,9 @@
|
|
|
651
650
|
"pattern": {
|
|
652
651
|
"type": "string"
|
|
653
652
|
},
|
|
653
|
+
"defaultValue": {
|
|
654
|
+
"type": "string"
|
|
655
|
+
},
|
|
654
656
|
"multiple": {
|
|
655
657
|
"default": false,
|
|
656
658
|
"type": "boolean"
|
|
@@ -1191,6 +1193,10 @@
|
|
|
1191
1193
|
},
|
|
1192
1194
|
"description": {
|
|
1193
1195
|
"type": "string"
|
|
1196
|
+
},
|
|
1197
|
+
"selected": {
|
|
1198
|
+
"default": false,
|
|
1199
|
+
"type": "boolean"
|
|
1194
1200
|
}
|
|
1195
1201
|
},
|
|
1196
1202
|
"required": [
|
|
@@ -1414,6 +1420,10 @@
|
|
|
1414
1420
|
},
|
|
1415
1421
|
"description": {
|
|
1416
1422
|
"type": "string"
|
|
1423
|
+
},
|
|
1424
|
+
"selected": {
|
|
1425
|
+
"default": false,
|
|
1426
|
+
"type": "boolean"
|
|
1417
1427
|
}
|
|
1418
1428
|
},
|
|
1419
1429
|
"required": [
|
|
@@ -1464,6 +1474,9 @@
|
|
|
1464
1474
|
"pattern": {
|
|
1465
1475
|
"type": "string"
|
|
1466
1476
|
},
|
|
1477
|
+
"defaultValue": {
|
|
1478
|
+
"type": "string"
|
|
1479
|
+
},
|
|
1467
1480
|
"cols": {
|
|
1468
1481
|
"default": 20,
|
|
1469
1482
|
"type": "number"
|
|
@@ -1540,6 +1553,9 @@
|
|
|
1540
1553
|
},
|
|
1541
1554
|
"pattern": {
|
|
1542
1555
|
"type": "string"
|
|
1556
|
+
},
|
|
1557
|
+
"defaultValue": {
|
|
1558
|
+
"type": "string"
|
|
1543
1559
|
}
|
|
1544
1560
|
},
|
|
1545
1561
|
"required": [
|
|
@@ -1602,6 +1618,9 @@
|
|
|
1602
1618
|
},
|
|
1603
1619
|
"pattern": {
|
|
1604
1620
|
"type": "string"
|
|
1621
|
+
},
|
|
1622
|
+
"defaultValue": {
|
|
1623
|
+
"type": "string"
|
|
1605
1624
|
}
|
|
1606
1625
|
},
|
|
1607
1626
|
"required": [
|