@eventcatalog/core 2.0.30 → 2.0.31

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.0.31
4
+
5
+ ### Patch Changes
6
+
7
+ - c4f6f40: fix(core): discover table width now fixed on long summarys
8
+
3
9
  ## 2.0.30
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@eventcatalog/core",
3
3
  "type": "module",
4
- "version": "2.0.30",
4
+ "version": "2.0.31",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -90,7 +90,7 @@ export const Table = ({
90
90
  {row.getVisibleCells().map((cell) => (
91
91
  <td
92
92
  key={cell.id}
93
- className={`whitespace-nowrap py-4 pl-4 pr-3 text-sm font-medium text-gray-900 ${cell.column.columnDef.meta?.className}`}
93
+ className={` py-4 pl-4 pr-3 text-sm font-medium text-gray-900 ${cell.column.columnDef.meta?.className}`}
94
94
  >
95
95
  {flexRender(cell.column.columnDef.cell, cell.getContext())}
96
96
  </td>
@@ -55,6 +55,7 @@ export const columns = () => [
55
55
  footer: (info) => info.column.id,
56
56
  meta: {
57
57
  showFilter: false,
58
+ className: 'max-w-md',
58
59
  },
59
60
  }),
60
61
  columnHelper.accessor('data.services', {
@@ -57,6 +57,7 @@ export const columns = () => [
57
57
  footer: (info) => info.column.id,
58
58
  meta: {
59
59
  showFilter: false,
60
+ className: 'max-w-md',
60
61
  },
61
62
  }),
62
63
 
@@ -56,6 +56,7 @@ export const columns = () => [
56
56
  footer: (info) => info.column.id,
57
57
  meta: {
58
58
  showFilter: false,
59
+ className: 'max-w-md',
59
60
  },
60
61
  }),
61
62
  columnHelper.accessor('data.receives', {