@knapsack/types 4.68.12--canary.4626.3fc6813.0 → 4.68.13
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/CHANGELOG.md +18 -0
- package/dist/acd-test-fixtures/index.js +22 -22
- package/dist/acd-test-fixtures/index.js.map +1 -1
- package/dist/acd-test-fixtures/index.mjs +22 -22
- package/dist/acd-test-fixtures/index.mjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.ts +5 -4
- package/dist/json-schema.d.ts.map +1 -1
- package/package.json +6 -6
|
@@ -1258,7 +1258,7 @@ var ksSandbox = {
|
|
|
1258
1258
|
hasDivider: {
|
|
1259
1259
|
type: "boolean",
|
|
1260
1260
|
title: "Has Divider",
|
|
1261
|
-
default:
|
|
1261
|
+
default: false
|
|
1262
1262
|
}
|
|
1263
1263
|
}
|
|
1264
1264
|
},
|
|
@@ -1475,22 +1475,24 @@ var ksSandbox = {
|
|
|
1475
1475
|
properties: {
|
|
1476
1476
|
columnConfig: {
|
|
1477
1477
|
type: "object",
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1478
|
+
properties: {
|
|
1479
|
+
columnType: {
|
|
1480
|
+
type: "string",
|
|
1481
|
+
title: "Column type",
|
|
1482
|
+
enumNames: ["Link", "Template"],
|
|
1483
|
+
enum: ["link", "template"],
|
|
1484
|
+
default: "link"
|
|
1485
|
+
},
|
|
1486
|
+
uniqueId: {
|
|
1487
|
+
type: "string",
|
|
1488
|
+
title: "Unique ID",
|
|
1489
|
+
description: "Globally unique ID for accessibility."
|
|
1490
|
+
},
|
|
1491
|
+
hasDivider: {
|
|
1492
|
+
type: "boolean",
|
|
1493
|
+
title: "Has Divider",
|
|
1494
|
+
default: false
|
|
1495
|
+
}
|
|
1494
1496
|
}
|
|
1495
1497
|
},
|
|
1496
1498
|
columnData: {
|
|
@@ -1780,14 +1782,12 @@ var ksSandbox = {
|
|
|
1780
1782
|
required: ["id", "value"],
|
|
1781
1783
|
properties: {
|
|
1782
1784
|
id: {
|
|
1783
|
-
type: "
|
|
1784
|
-
title: "The id Schema"
|
|
1785
|
-
examples: [1, 2]
|
|
1785
|
+
type: "number",
|
|
1786
|
+
title: "The id Schema"
|
|
1786
1787
|
},
|
|
1787
1788
|
value: {
|
|
1788
1789
|
type: "string",
|
|
1789
|
-
title: "The value Schema"
|
|
1790
|
-
examples: ["item 1", "item 2"]
|
|
1790
|
+
title: "The value Schema"
|
|
1791
1791
|
}
|
|
1792
1792
|
}
|
|
1793
1793
|
}
|