@knapsack/types 4.68.11 → 4.68.12--canary.4618.5fb5165.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +0 -25
- 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,28 +1,3 @@
|
|
1
|
-
# v4.68.11 (Tue Aug 27 2024)
|
2
|
-
|
3
|
-
#### 🐛 Bug Fix
|
4
|
-
|
5
|
-
- Fix merge conflict with navs ([@rockymountainhigh1943](https://github.com/rockymountainhigh1943))
|
6
|
-
- Merge branch 'latest' into feature/ksp-5388-ability-to-set-the-header-page-background-color-globally ([@GormanDesign](https://github.com/GormanDesign))
|
7
|
-
- Merge branch 'feature/ksp-5388-ability-to-set-the-header-page-background-color-globally' of github.com:knapsack-labs/app-monorepo into feature/ksp-5388-ability-to-set-the-header-page-background-color-globally ([@GormanDesign](https://github.com/GormanDesign))
|
8
|
-
- Merge branch 'latest' into feature/ksp-5337-add-slot-item-ux-refactor ([@GormanDesign](https://github.com/GormanDesign))
|
9
|
-
- Merge remote-tracking branch 'origin/latest' into feature/ksp-5337-add-slot-item-ux-refactor ([@EvanLovely](https://github.com/EvanLovely))
|
10
|
-
- adds default page header styles and pattern page styles ([@GormanDesign](https://github.com/GormanDesign))
|
11
|
-
- Merge branch 'latest' into feature/ksp-5337-add-slot-item-ux-refactor ([@illepic](https://github.com/illepic))
|
12
|
-
|
13
|
-
#### 🏠 Internal
|
14
|
-
|
15
|
-
- adds global hero styles settings and enables hero styles on patterns [#4487](https://github.com/knapsack-labs/app-monorepo/pull/4487) ([@GormanDesign](https://github.com/GormanDesign))
|
16
|
-
|
17
|
-
#### Authors: 4
|
18
|
-
|
19
|
-
- Christopher Bloom ([@illepic](https://github.com/illepic))
|
20
|
-
- Evan Lovely ([@EvanLovely](https://github.com/EvanLovely))
|
21
|
-
- Jake Love ([@rockymountainhigh1943](https://github.com/rockymountainhigh1943))
|
22
|
-
- Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
|
23
|
-
|
24
|
-
---
|
25
|
-
|
26
1
|
# v4.68.9 (Wed Aug 21 2024)
|
27
2
|
|
28
3
|
#### 🐛 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
|
}
|