@eventcatalog/core 2.13.0 → 2.13.1

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,11 @@
1
1
  # @eventcatalog/core
2
2
 
3
+ ## 2.13.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 240a9d3: fix(core): fixed channel information component
8
+
3
9
  ## 2.13.0
4
10
 
5
11
  ### Minor Changes
package/README.md CHANGED
@@ -260,4 +260,4 @@ This project follows the [all-contributors](https://github.com/all-contributors/
260
260
 
261
261
  # License
262
262
 
263
- MIT.
263
+ MIT
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.0",
9
+ "version": "2.13.1",
10
10
  "publishConfig": {
11
11
  "access": "public"
12
12
  },
@@ -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>