@eventcatalog/core 2.58.2 → 2.59.0

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.
Files changed (52) hide show
  1. package/dist/analytics/analytics.cjs +1 -1
  2. package/dist/analytics/analytics.js +2 -2
  3. package/dist/analytics/log-build.cjs +1 -1
  4. package/dist/analytics/log-build.js +3 -3
  5. package/dist/{chunk-PV4MP6U4.js → chunk-F5WMB6Q5.js} +1 -1
  6. package/dist/{chunk-ZBPULBAC.js → chunk-SCDNNFXH.js} +1 -1
  7. package/dist/{chunk-WK6GQM5P.js → chunk-T3QXQPTB.js} +1 -1
  8. package/dist/constants.cjs +1 -1
  9. package/dist/constants.js +1 -1
  10. package/dist/eventcatalog.cjs +1 -1
  11. package/dist/eventcatalog.js +3 -3
  12. package/eventcatalog/src/components/Grids/DomainGrid.tsx +67 -2
  13. package/eventcatalog/src/components/Grids/MessageGrid.tsx +157 -41
  14. package/eventcatalog/src/components/Grids/ServiceGrid.tsx +78 -14
  15. package/eventcatalog/src/components/MDX/NodeGraph/Edges/MultilineEdgeLabel.tsx +52 -0
  16. package/eventcatalog/src/components/MDX/NodeGraph/NodeGraph.astro +13 -0
  17. package/eventcatalog/src/components/MDX/NodeGraph/NodeGraph.tsx +4 -1
  18. package/eventcatalog/src/components/MDX/NodeGraph/Nodes/Data.tsx +55 -16
  19. package/eventcatalog/src/components/SideBars/ContainerSideBar.astro +180 -0
  20. package/eventcatalog/src/components/SideBars/ServiceSideBar.astro +41 -0
  21. package/eventcatalog/src/components/SideNav/ListViewSideBar/components/MessageList.tsx +1 -1
  22. package/eventcatalog/src/components/SideNav/ListViewSideBar/index.tsx +250 -59
  23. package/eventcatalog/src/components/SideNav/ListViewSideBar/types.ts +3 -0
  24. package/eventcatalog/src/components/SideNav/ListViewSideBar/utils.ts +35 -1
  25. package/eventcatalog/src/components/SideNav/TreeView/getTreeView.ts +2 -2
  26. package/eventcatalog/src/components/Tables/Table.tsx +22 -2
  27. package/eventcatalog/src/components/Tables/columns/ContainersTableColumns.tsx +152 -0
  28. package/eventcatalog/src/components/Tables/columns/index.tsx +3 -0
  29. package/eventcatalog/src/content.config.ts +57 -1
  30. package/eventcatalog/src/layouts/DiscoverLayout.astro +11 -1
  31. package/eventcatalog/src/pages/architecture/architecture.astro +9 -1
  32. package/eventcatalog/src/pages/discover/[type]/_index.data.ts +1 -1
  33. package/eventcatalog/src/pages/discover/[type]/index.astro +11 -1
  34. package/eventcatalog/src/pages/docs/[type]/[id]/[version]/_index.data.ts +11 -1
  35. package/eventcatalog/src/pages/docs/[type]/[id]/[version]/index.astro +50 -1
  36. package/eventcatalog/src/pages/docs/[type]/[id]/[version].md.ts +2 -0
  37. package/eventcatalog/src/pages/docs/llm/llms-full.txt.ts +4 -1
  38. package/eventcatalog/src/pages/docs/llm/llms-services.txt.ts +19 -1
  39. package/eventcatalog/src/pages/docs/llm/llms.txt.ts +3 -0
  40. package/eventcatalog/src/pages/visualiser/[type]/[id]/[version]/_index.data.ts +1 -1
  41. package/eventcatalog/src/pages/visualiser/[type]/[id]/[version]/data/_index.data.ts +80 -0
  42. package/eventcatalog/src/pages/visualiser/[type]/[id]/[version]/data/index.astro +52 -0
  43. package/eventcatalog/src/pages/visualiser/[type]/[id]/index.astro +9 -2
  44. package/eventcatalog/src/types/index.ts +20 -2
  45. package/eventcatalog/src/utils/collections/containers.ts +94 -0
  46. package/eventcatalog/src/utils/collections/icons.ts +3 -1
  47. package/eventcatalog/src/utils/collections/services.ts +15 -1
  48. package/eventcatalog/src/utils/collections/util.ts +4 -2
  49. package/eventcatalog/src/utils/node-graphs/container-node-graph.ts +155 -0
  50. package/eventcatalog/src/utils/node-graphs/services-node-graph.ts +188 -82
  51. package/eventcatalog/src/utils/page-loaders/page-data-loader.ts +2 -0
  52. package/package.json +1 -1
@@ -6,6 +6,7 @@ import { getQueries } from '@utils/queries';
6
6
  import { getServices } from '@utils/collections/services';
7
7
  import { getFlows } from '@utils/collections/flows';
8
8
  import { getEntities } from '@utils/entities';
9
+ import { getContainers } from '@utils/collections/containers';
9
10
  import type { CollectionEntry } from 'astro:content';
10
11
 
11
12
  export const pageDataLoader: Record<PageTypes, () => Promise<CollectionEntry<CollectionTypes>[]>> = {
@@ -17,4 +18,5 @@ export const pageDataLoader: Record<PageTypes, () => Promise<CollectionEntry<Col
17
18
  channels: getChannels,
18
19
  flows: getFlows,
19
20
  entities: getEntities,
21
+ containers: getContainers,
20
22
  };
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.58.2",
9
+ "version": "2.59.0",
10
10
  "publishConfig": {
11
11
  "access": "public"
12
12
  },