@knapsack/types 4.68.14--canary.4532.73337f0.0 → 4.68.14--canary.4629.a2af8ee.0

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,24 +1475,22 @@ var ksSandbox = {
1475
1475
  properties: {
1476
1476
  columnConfig: {
1477
1477
  type: "object",
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
- }
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"
1496
1494
  }
1497
1495
  },
1498
1496
  columnData: {
@@ -1782,12 +1780,14 @@ var ksSandbox = {
1782
1780
  required: ["id", "value"],
1783
1781
  properties: {
1784
1782
  id: {
1785
- type: "number",
1786
- title: "The id Schema"
1783
+ type: "integer",
1784
+ title: "The id Schema",
1785
+ examples: [1, 2]
1787
1786
  },
1788
1787
  value: {
1789
1788
  type: "string",
1790
- title: "The value Schema"
1789
+ title: "The value Schema",
1790
+ examples: ["item 1", "item 2"]
1791
1791
  }
1792
1792
  }
1793
1793
  }