@eventcatalog/core 2.24.3 → 2.25.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.
- package/dist/analytics/analytics.cjs +1 -1
- package/dist/analytics/analytics.js +2 -2
- package/dist/analytics/log-build.cjs +1 -1
- package/dist/analytics/log-build.js +3 -3
- package/dist/catalog-to-astro-content-directory.cjs +0 -1
- package/dist/catalog-to-astro-content-directory.js +1 -1
- package/dist/{chunk-7K4ERS3X.js → chunk-7674GE3M.js} +1 -1
- package/dist/{chunk-3MDI2MXJ.js → chunk-H6PSWK2Z.js} +1 -1
- package/dist/{chunk-OZZMZUB3.js → chunk-JENKAK6L.js} +1 -1
- package/dist/{chunk-CXKIF3EI.js → chunk-VCR3LHZR.js} +0 -1
- package/dist/constants.cjs +1 -1
- package/dist/constants.js +1 -1
- package/dist/eventcatalog.cjs +1 -2
- package/dist/eventcatalog.js +4 -4
- package/eventcatalog/src/components/MDX/NodeGraph/NodeGraph.tsx +3 -2
- package/eventcatalog/src/components/MDX/NodeGraph/Nodes/Channel.tsx +82 -54
- package/eventcatalog/src/components/MDX/NodeGraph/Nodes/Command.tsx +44 -41
- package/eventcatalog/src/components/MDX/NodeGraph/Nodes/Event.tsx +43 -41
- package/eventcatalog/src/components/MDX/NodeGraph/Nodes/MessageContextMenu.tsx +54 -0
- package/eventcatalog/src/components/MDX/NodeGraph/Nodes/Query.tsx +45 -43
- package/eventcatalog/src/components/MDX/NodeGraph/Nodes/Service.tsx +112 -42
- package/eventcatalog/src/components/SideNav/TreeView/getTreeView.ts +1 -1
- package/eventcatalog/src/pages/docs/[type]/[id]/[version]/spec/index.astro +0 -1
- package/eventcatalog/src/pages/docs/_default-docs.mdx +24 -0
- package/eventcatalog/src/pages/docs/index.astro +13 -18
- package/package.json +2 -1
- package/default-files-for-collections/pages.md +0 -7
- package/eventcatalog/src/components/DocsNavigation.astro +0 -145
- package/eventcatalog/src/layouts/CustomDocsPageLayout.astro +0 -131
- package/eventcatalog/src/layouts/PlainPage.astro +0 -29
|
@@ -1,131 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
interface Props {
|
|
3
|
-
title: string;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
import Footer from '@layouts/Footer.astro';
|
|
7
|
-
import Header from '@components/Header.astro';
|
|
8
|
-
import SideBar from '@components/DocsNavigation.astro';
|
|
9
|
-
import { buildUrl } from '@utils/url-builder';
|
|
10
|
-
---
|
|
11
|
-
|
|
12
|
-
<!doctype html>
|
|
13
|
-
<html lang="en">
|
|
14
|
-
<head>
|
|
15
|
-
<meta charset="UTF-8" />
|
|
16
|
-
<meta name="description" content="Astro description" />
|
|
17
|
-
<meta name="viewport" content="width=device-width" />
|
|
18
|
-
<link rel="icon" type="image/svg+xml" href={buildUrl('/favicon.ico', true)} />
|
|
19
|
-
<meta name="generator" content={Astro.generator} />
|
|
20
|
-
<title>EventCatalog</title>
|
|
21
|
-
</head>
|
|
22
|
-
<body>
|
|
23
|
-
<div class="px-10 max-w-[120em] mx-auto">
|
|
24
|
-
<Header />
|
|
25
|
-
|
|
26
|
-
<div class="md:pt-4">
|
|
27
|
-
<nav class="hidden sm:flex grow w-56 xl:w-[19em] fixed overflow-y-auto h-full py-2">
|
|
28
|
-
<div class="w-full">
|
|
29
|
-
<SideBar />
|
|
30
|
-
</div>
|
|
31
|
-
</nav>
|
|
32
|
-
|
|
33
|
-
<div class="pl-0 sm:pl-56 xl:pl-80 w-full pt-8 pb-40">
|
|
34
|
-
<div class="prose prose-sm">
|
|
35
|
-
<div class="bg-white">
|
|
36
|
-
<div class="mx-auto max-w-7xl">
|
|
37
|
-
<div class="mx-auto max-w-2xl lg:mx-0 lg:max-w-none">
|
|
38
|
-
<h1 class="mt-2 text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl mb-0">EventCatalog</h1>
|
|
39
|
-
<div class="grid max-w-xl grid-cols-1 md:gap-8 text-base leading-7 text-gray-700 lg:max-w-none lg:grid-cols-1">
|
|
40
|
-
<div>
|
|
41
|
-
<p>
|
|
42
|
-
Welcome to <a href="https://www.eventcatalog.dev/">EventCatalog</a>.
|
|
43
|
-
</p>
|
|
44
|
-
<p>
|
|
45
|
-
This open-source project is designed to help you and your teams bring discoverability and clarity to your
|
|
46
|
-
event-driven architectures (EDA).
|
|
47
|
-
</p>
|
|
48
|
-
<p>
|
|
49
|
-
To get started you can read the following guides:
|
|
50
|
-
<ul>
|
|
51
|
-
<li>
|
|
52
|
-
<a class="text-primary" href="https://eventcatalog.dev/docs/development/getting-started/introduction"
|
|
53
|
-
>Getting started with EventCatalog</a
|
|
54
|
-
>
|
|
55
|
-
</li>
|
|
56
|
-
<li>
|
|
57
|
-
<a class="text-primary" href="https://eventcatalog.dev/docs/development/guides/domains/adding-domains"
|
|
58
|
-
>Creating domains</a
|
|
59
|
-
>
|
|
60
|
-
</li>
|
|
61
|
-
<li>
|
|
62
|
-
<a
|
|
63
|
-
class="text-primary"
|
|
64
|
-
href="https://eventcatalog.dev/docs/development/guides/services/adding-services"
|
|
65
|
-
>Creating services</a
|
|
66
|
-
>
|
|
67
|
-
</li>
|
|
68
|
-
<li>
|
|
69
|
-
<a
|
|
70
|
-
class="text-primary"
|
|
71
|
-
href="https://eventcatalog.dev/docs/development/guides/messages/commands/introduction"
|
|
72
|
-
>Creating commands</a
|
|
73
|
-
>
|
|
74
|
-
</li>
|
|
75
|
-
<li>
|
|
76
|
-
<a
|
|
77
|
-
class="text-primary"
|
|
78
|
-
href="https://eventcatalog.dev/docs/development/guides/messages/events/introduction"
|
|
79
|
-
>Creating events</a
|
|
80
|
-
>
|
|
81
|
-
</li>
|
|
82
|
-
<li>
|
|
83
|
-
<a class="text-primary" href="https://eventcatalog.dev/docs/owners">Assigning owners to resources</a>
|
|
84
|
-
</li>
|
|
85
|
-
<li>
|
|
86
|
-
<a class="text-primary" href="https://eventcatalog.dev/docs/development/components/using-components"
|
|
87
|
-
>Using components in your pages (Schemas, OpenAPI, etc)</a
|
|
88
|
-
>
|
|
89
|
-
</li>
|
|
90
|
-
<li>
|
|
91
|
-
<a class="text-primary" href="https://eventcatalog.dev/docs/development/deployment"
|
|
92
|
-
>Deploying and hosting your EventCatalog</a
|
|
93
|
-
>
|
|
94
|
-
</li>
|
|
95
|
-
</ul>
|
|
96
|
-
</p>
|
|
97
|
-
<h3>Join the community</h3>
|
|
98
|
-
<p>
|
|
99
|
-
Got questions about EventCatalog? Feature requests or need support? <a
|
|
100
|
-
class="text-primary"
|
|
101
|
-
href="https://discord.gg/3rjaZMmrAm">Join our community on Discord.</a
|
|
102
|
-
>
|
|
103
|
-
</p>
|
|
104
|
-
<h3>Enterprise support</h3>
|
|
105
|
-
<p>
|
|
106
|
-
Using EventCatalog and needs enterprise support? Work with us, find out what we offer on our <a
|
|
107
|
-
class="text-primary"
|
|
108
|
-
href="https://eventcatalog.dev/enterprise">enterprise page</a
|
|
109
|
-
>.
|
|
110
|
-
</p>
|
|
111
|
-
</div>
|
|
112
|
-
</div>
|
|
113
|
-
|
|
114
|
-
<Footer />
|
|
115
|
-
</div>
|
|
116
|
-
</div>
|
|
117
|
-
</div>
|
|
118
|
-
|
|
119
|
-
<!-- <slot /> -->
|
|
120
|
-
</div>
|
|
121
|
-
</div>
|
|
122
|
-
</div>
|
|
123
|
-
</div>
|
|
124
|
-
</body>
|
|
125
|
-
</html>
|
|
126
|
-
|
|
127
|
-
<style>
|
|
128
|
-
.prose {
|
|
129
|
-
max-width: none;
|
|
130
|
-
}
|
|
131
|
-
</style>
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
interface Props {
|
|
3
|
-
title: string;
|
|
4
|
-
description?: string;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
const { title, description } = Astro.props;
|
|
8
|
-
|
|
9
|
-
import Header from '@components/Header.astro';
|
|
10
|
-
import SEO from '@components/Seo.astro';
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
<!doctype html>
|
|
14
|
-
<html lang="en">
|
|
15
|
-
<head>
|
|
16
|
-
<SEO title={`EventCatalog | ${title}`} description={description} ogTitle={title} />
|
|
17
|
-
</head>
|
|
18
|
-
<body>
|
|
19
|
-
<div class="px-10 max-w-[120em] mx-auto">
|
|
20
|
-
<Header />
|
|
21
|
-
|
|
22
|
-
<div class="md:pt-4">
|
|
23
|
-
<div>
|
|
24
|
-
<slot />
|
|
25
|
-
</div>
|
|
26
|
-
</div>
|
|
27
|
-
</div>
|
|
28
|
-
</body>
|
|
29
|
-
</html>
|