@eventcatalog/core 2.3.2 → 2.3.3

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.3.3
4
+
5
+ ### Patch Changes
6
+
7
+ - dad4df7: fix(core): visualiser now truncates labels on sidebar
8
+
3
9
  ## 2.3.2
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.3.2",
4
+ "version": "2.3.3",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -33,7 +33,7 @@ const BasicList = ({ title, items, emptyMessage, color = 'gray' }: Props) => {
33
33
  className={`flex justify-between items-center w-full px-2 rounded-md font-normal ${item.active ? 'bg-purple-200 text-purple-800 ' : 'font-thin'}`}
34
34
  href={item.href}
35
35
  >
36
- <span className="block">{item.label}</span>
36
+ <span className="block truncate !whitespace-normal">{item.label}</span>
37
37
  {item.version && (
38
38
  <span className="block text-sm bg-purple-100 p-0.5 px-1 text-gray-600 rounded-md font-light">
39
39
  v{item.version}