@knapsack/types 4.68.12--canary.4626.3fc6813.0 → 4.68.12

Sign up to get free protection for your applications and to get access to all the features.
@@ -1258,7 +1258,7 @@ var ksSandbox = {
1258
1258
  hasDivider: {
1259
1259
  type: "boolean",
1260
1260
  title: "Has Divider",
1261
- default: "false"
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
- columnType: {
1479
- type: "string",
1480
- title: "Column type",
1481
- enumNames: ["Link", "Template"],
1482
- enum: ["link", "template"],
1483
- default: "link"
1484
- },
1485
- uniqueId: {
1486
- type: "string",
1487
- title: "Unique ID",
1488
- description: "Globally unique ID for accessibility."
1489
- },
1490
- hasDivider: {
1491
- type: "boolean",
1492
- title: "Has Divider",
1493
- default: "false"
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: "integer",
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
  }