@knapsack/types 4.68.13 → 4.68.14--canary.4629.dc87d34.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/CHANGELOG.md CHANGED
@@ -1,21 +1,3 @@
1
- # v4.68.12 (Thu Aug 29 2024)
2
-
3
- #### 🐛 Bug Fix
4
-
5
- - better Angular Infer Spec KSP-5411 KSP-5412 [#4618](https://github.com/knapsack-labs/app-monorepo/pull/4618) ([@EvanLovely](https://github.com/EvanLovely))
6
- - Merge branch 'latest' into KSP-5360-infer-mui-component-types ([@brittanysmart](https://github.com/brittanysmart))
7
-
8
- #### 🏠 Internal
9
-
10
- - add MUI infer spec test [#4510](https://github.com/knapsack-labs/app-monorepo/pull/4510) ([@brittanysmart](https://github.com/brittanysmart))
11
-
12
- #### Authors: 2
13
-
14
- - Brittany Smart ([@brittanysmart](https://github.com/brittanysmart))
15
- - Evan Lovely ([@EvanLovely](https://github.com/EvanLovely))
16
-
17
- ---
18
-
19
1
  # v4.68.11 (Tue Aug 27 2024)
20
2
 
21
3
  #### 🐛 Bug Fix
@@ -1284,7 +1284,7 @@ var ksSandbox = {
1284
1284
  hasDivider: {
1285
1285
  type: "boolean",
1286
1286
  title: "Has Divider",
1287
- default: false
1287
+ default: "false"
1288
1288
  }
1289
1289
  }
1290
1290
  },
@@ -1501,24 +1501,22 @@ var ksSandbox = {
1501
1501
  properties: {
1502
1502
  columnConfig: {
1503
1503
  type: "object",
1504
- properties: {
1505
- columnType: {
1506
- type: "string",
1507
- title: "Column type",
1508
- enumNames: ["Link", "Template"],
1509
- enum: ["link", "template"],
1510
- default: "link"
1511
- },
1512
- uniqueId: {
1513
- type: "string",
1514
- title: "Unique ID",
1515
- description: "Globally unique ID for accessibility."
1516
- },
1517
- hasDivider: {
1518
- type: "boolean",
1519
- title: "Has Divider",
1520
- default: false
1521
- }
1504
+ columnType: {
1505
+ type: "string",
1506
+ title: "Column type",
1507
+ enumNames: ["Link", "Template"],
1508
+ enum: ["link", "template"],
1509
+ default: "link"
1510
+ },
1511
+ uniqueId: {
1512
+ type: "string",
1513
+ title: "Unique ID",
1514
+ description: "Globally unique ID for accessibility."
1515
+ },
1516
+ hasDivider: {
1517
+ type: "boolean",
1518
+ title: "Has Divider",
1519
+ default: "false"
1522
1520
  }
1523
1521
  },
1524
1522
  columnData: {
@@ -1808,12 +1806,14 @@ var ksSandbox = {
1808
1806
  required: ["id", "value"],
1809
1807
  properties: {
1810
1808
  id: {
1811
- type: "number",
1812
- title: "The id Schema"
1809
+ type: "integer",
1810
+ title: "The id Schema",
1811
+ examples: [1, 2]
1813
1812
  },
1814
1813
  value: {
1815
1814
  type: "string",
1816
- title: "The value Schema"
1815
+ title: "The value Schema",
1816
+ examples: ["item 1", "item 2"]
1817
1817
  }
1818
1818
  }
1819
1819
  }