@eventcatalog/core 2.13.0 → 2.13.2
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,5 +1,17 @@
|
|
|
1
1
|
# @eventcatalog/core
|
|
2
2
|
|
|
3
|
+
## 2.13.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1c79a5f: chore(core): moved types deps to dev deps
|
|
8
|
+
|
|
9
|
+
## 2.13.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 240a9d3: fix(core): fixed channel information component
|
|
14
|
+
|
|
3
15
|
## 2.13.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"url": "https://github.com/event-catalog/eventcatalog.git"
|
|
7
7
|
},
|
|
8
8
|
"type": "module",
|
|
9
|
-
"version": "2.13.
|
|
9
|
+
"version": "2.13.2",
|
|
10
10
|
"publishConfig": {
|
|
11
11
|
"access": "public"
|
|
12
12
|
},
|
|
@@ -36,7 +36,6 @@
|
|
|
36
36
|
"format:diff": "prettier --config .prettierrc --list-different \"**/*.{js,jsx,ts,tsx,json,astro}\""
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@astrojs/check": "^0.9.4",
|
|
40
39
|
"@astrojs/markdown-remark": "^5.3.0",
|
|
41
40
|
"@astrojs/mdx": "^3.1.8",
|
|
42
41
|
"@astrojs/react": "^3.6.2",
|
|
@@ -49,12 +48,6 @@
|
|
|
49
48
|
"@stoplight/mosaic": "^1.53.2",
|
|
50
49
|
"@tailwindcss/typography": "^0.5.13",
|
|
51
50
|
"@tanstack/react-table": "^8.17.3",
|
|
52
|
-
"@types/dagre": "^0.7.52",
|
|
53
|
-
"@types/diff": "^5.2.2",
|
|
54
|
-
"@types/lodash.debounce": "^4.0.9",
|
|
55
|
-
"@types/lodash.merge": "4.6.9",
|
|
56
|
-
"@types/node": "^20.14.2",
|
|
57
|
-
"@types/semver": "^7.5.8",
|
|
58
51
|
"astro": "^4.16.5",
|
|
59
52
|
"astro-expressive-code": "^0.36.1",
|
|
60
53
|
"astro-pagefind": "^1.6.0",
|
|
@@ -87,10 +80,17 @@
|
|
|
87
80
|
"uuid": "^10.0.0"
|
|
88
81
|
},
|
|
89
82
|
"devDependencies": {
|
|
83
|
+
"@astrojs/check": "^0.9.4",
|
|
90
84
|
"@changesets/cli": "^2.27.5",
|
|
91
85
|
"@playwright/test": "^1.48.1",
|
|
86
|
+
"@types/dagre": "^0.7.52",
|
|
87
|
+
"@types/diff": "^5.2.2",
|
|
88
|
+
"@types/lodash.debounce": "^4.0.9",
|
|
89
|
+
"@types/lodash.merge": "4.6.9",
|
|
90
|
+
"@types/node": "^20.14.2",
|
|
92
91
|
"@types/react": "^18.3.3",
|
|
93
92
|
"@types/react-dom": "^18.3.0",
|
|
93
|
+
"@types/semver": "^7.5.8",
|
|
94
94
|
"prettier": "^3.3.3",
|
|
95
95
|
"prettier-plugin-astro": "^0.14.1",
|
|
96
96
|
"tsup": "^8.1.0",
|
|
@@ -54,8 +54,8 @@ const ChannelParameters = (data: CollectionEntry<'channels'>['data']) => {
|
|
|
54
54
|
<thead>
|
|
55
55
|
<tr className="bg-purple-500 text-white">
|
|
56
56
|
<th className="py-2 px-4 border-b text-left">Parameter</th>
|
|
57
|
-
<th className="py-2 px-4 border-b text-left">Options</th>
|
|
58
57
|
<th className="py-2 px-4 border-b text-left">Description</th>
|
|
58
|
+
<th className="py-2 px-4 border-b text-left">Options</th>
|
|
59
59
|
<th className="py-2 px-4 border-b text-left">Default</th>
|
|
60
60
|
</tr>
|
|
61
61
|
</thead>
|
|
@@ -63,9 +63,9 @@ const ChannelParameters = (data: CollectionEntry<'channels'>['data']) => {
|
|
|
63
63
|
{Object.entries(data.parameters).map(([param, details]) => (
|
|
64
64
|
<tr className="hover:bg-gray-50" key={param}>
|
|
65
65
|
<td className="py-2 px-4 border-b">{param}</td>
|
|
66
|
-
<td className="py-2 px-4 border-b">{details.default || 'N/A'}</td>
|
|
67
|
-
<td className="py-2 px-4 border-b">{details.enum ? details.enum.join(', ') : 'N/A'}</td>
|
|
68
66
|
<td className="py-2 px-4 border-b">{details.description}</td>
|
|
67
|
+
<td className="py-2 px-4 border-b">{details.enum ? details.enum.join(', ') : 'N/A'}</td>
|
|
68
|
+
<td className="py-2 px-4 border-b">{details.default || 'N/A'}</td>
|
|
69
69
|
</tr>
|
|
70
70
|
))}
|
|
71
71
|
</tbody>
|