@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
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
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
|
+
|
|
1
19
|
# v4.68.11 (Tue Aug 27 2024)
|
|
2
20
|
|
|
3
21
|
#### 🐛 Bug Fix
|
|
@@ -1284,7 +1284,7 @@ var ksSandbox = {
|
|
|
1284
1284
|
hasDivider: {
|
|
1285
1285
|
type: "boolean",
|
|
1286
1286
|
title: "Has Divider",
|
|
1287
|
-
default:
|
|
1287
|
+
default: false
|
|
1288
1288
|
}
|
|
1289
1289
|
}
|
|
1290
1290
|
},
|
|
@@ -1501,22 +1501,24 @@ var ksSandbox = {
|
|
|
1501
1501
|
properties: {
|
|
1502
1502
|
columnConfig: {
|
|
1503
1503
|
type: "object",
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
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
|
+
}
|
|
1520
1522
|
}
|
|
1521
1523
|
},
|
|
1522
1524
|
columnData: {
|
|
@@ -1806,14 +1808,12 @@ var ksSandbox = {
|
|
|
1806
1808
|
required: ["id", "value"],
|
|
1807
1809
|
properties: {
|
|
1808
1810
|
id: {
|
|
1809
|
-
type: "
|
|
1810
|
-
title: "The id Schema"
|
|
1811
|
-
examples: [1, 2]
|
|
1811
|
+
type: "number",
|
|
1812
|
+
title: "The id Schema"
|
|
1812
1813
|
},
|
|
1813
1814
|
value: {
|
|
1814
1815
|
type: "string",
|
|
1815
|
-
title: "The value Schema"
|
|
1816
|
-
examples: ["item 1", "item 2"]
|
|
1816
|
+
title: "The value Schema"
|
|
1817
1817
|
}
|
|
1818
1818
|
}
|
|
1819
1819
|
}
|