@knapsack/types 4.69.0--canary.4433.d5d9fce.1 → 4.69.0--canary.4627.955e589.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,46 @@
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
+ # v4.68.11 (Tue Aug 27 2024)
20
+
21
+ #### 🐛 Bug Fix
22
+
23
+ - Fix merge conflict with navs ([@rockymountainhigh1943](https://github.com/rockymountainhigh1943))
24
+ - Merge branch 'latest' into feature/ksp-5388-ability-to-set-the-header-page-background-color-globally ([@GormanDesign](https://github.com/GormanDesign))
25
+ - 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))
26
+ - Merge branch 'latest' into feature/ksp-5337-add-slot-item-ux-refactor ([@GormanDesign](https://github.com/GormanDesign))
27
+ - Merge remote-tracking branch 'origin/latest' into feature/ksp-5337-add-slot-item-ux-refactor ([@EvanLovely](https://github.com/EvanLovely))
28
+ - adds default page header styles and pattern page styles ([@GormanDesign](https://github.com/GormanDesign))
29
+ - Merge branch 'latest' into feature/ksp-5337-add-slot-item-ux-refactor ([@illepic](https://github.com/illepic))
30
+
31
+ #### 🏠 Internal
32
+
33
+ - 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))
34
+
35
+ #### Authors: 4
36
+
37
+ - Christopher Bloom ([@illepic](https://github.com/illepic))
38
+ - Evan Lovely ([@EvanLovely](https://github.com/EvanLovely))
39
+ - Jake Love ([@rockymountainhigh1943](https://github.com/rockymountainhigh1943))
40
+ - Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
41
+
42
+ ---
43
+
1
44
  # v4.68.9 (Wed Aug 21 2024)
2
45
 
3
46
  #### 🐛 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,22 +1501,24 @@ var ksSandbox = {
1501
1501
  properties: {
1502
1502
  columnConfig: {
1503
1503
  type: "object",
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"
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: "integer",
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
  }