@knapsack/types 4.69.7--canary.4724.5fd37a2.0 → 4.69.7
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 +26 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
# v4.69.7 (Wed Sep 11 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Merge branch 'latest' into feature/ksp-5497-setup-status-id-in-client ([@mabry1985](https://github.com/mabry1985))
|
|
6
|
+
- adds ERROR status id for designSrcFileStatus ([@freneticpixel](https://github.com/freneticpixel))
|
|
7
|
+
- update fixture ([@mabry1985](https://github.com/mabry1985))
|
|
8
|
+
- add type ([@mabry1985](https://github.com/mabry1985))
|
|
9
|
+
|
|
10
|
+
#### 🏠 Internal
|
|
11
|
+
|
|
12
|
+
- add ability to reset token static or ref fields [#4706](https://github.com/knapsack-labs/app-monorepo/pull/4706) ([@GormanDesign](https://github.com/GormanDesign))
|
|
13
|
+
- setup foundations for Local Cloud Authoring KSP-5495 [#4629](https://github.com/knapsack-labs/app-monorepo/pull/4629) ([@EvanLovely](https://github.com/EvanLovely))
|
|
14
|
+
- setup status id in client [#4696](https://github.com/knapsack-labs/app-monorepo/pull/4696) ([@mabry1985](https://github.com/mabry1985) [@freneticpixel](https://github.com/freneticpixel))
|
|
15
|
+
- fixes schema form select appearance [#4700](https://github.com/knapsack-labs/app-monorepo/pull/4700) ([@GormanDesign](https://github.com/GormanDesign))
|
|
16
|
+
- add scroll indicator to popover [#4697](https://github.com/knapsack-labs/app-monorepo/pull/4697) ([@GormanDesign](https://github.com/GormanDesign))
|
|
17
|
+
|
|
18
|
+
#### Authors: 4
|
|
19
|
+
|
|
20
|
+
- Evan Lovely ([@EvanLovely](https://github.com/EvanLovely))
|
|
21
|
+
- Jim Frenette ([@freneticpixel](https://github.com/freneticpixel))
|
|
22
|
+
- Josh Mabry ([@mabry1985](https://github.com/mabry1985))
|
|
23
|
+
- Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
1
27
|
# v4.69.6 (Fri Sep 06 2024)
|
|
2
28
|
|
|
3
29
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knapsack/types",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "4.69.7
|
|
4
|
+
"version": "4.69.7",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -38,15 +38,15 @@
|
|
|
38
38
|
"test": "ava"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@knapsack/utils": "4.69.7
|
|
41
|
+
"@knapsack/utils": "4.69.7",
|
|
42
42
|
"color-string": "^1.9.1",
|
|
43
43
|
"immer": "^10.0.4",
|
|
44
44
|
"superstruct": "^0.16.7"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@knapsack/eslint-config-starter": "4.69.7
|
|
48
|
-
"@knapsack/test-ava": "4.69.7
|
|
49
|
-
"@knapsack/typescript-config-starter": "4.69.7
|
|
47
|
+
"@knapsack/eslint-config-starter": "4.69.7",
|
|
48
|
+
"@knapsack/test-ava": "4.69.7",
|
|
49
|
+
"@knapsack/typescript-config-starter": "4.69.7",
|
|
50
50
|
"@tiptap/core": "^2.6.6",
|
|
51
51
|
"@types/color-string": "^1.5.5",
|
|
52
52
|
"@types/fs-extra": "^11.0.4",
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"directory": "libs/types",
|
|
69
69
|
"type": "git"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "e580aec3ca47bc19adfb9fbd6d72aca5ddbe613d"
|
|
72
72
|
}
|