@eventcatalog/core 2.59.0 → 2.59.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/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/{chunk-F5WMB6Q5.js → chunk-5GNBQGFW.js} +1 -1
- package/dist/{chunk-T3QXQPTB.js → chunk-AREJNU2F.js} +1 -1
- package/dist/{chunk-SCDNNFXH.js → chunk-LAI5QQUI.js} +1 -1
- package/dist/constants.cjs +1 -1
- package/dist/constants.js +1 -1
- package/dist/eventcatalog.cjs +1 -1
- package/dist/eventcatalog.js +3 -3
- package/eventcatalog/src/pages/docs/[type]/[id]/[version]/changelog/_index.data.ts +1 -1
- package/eventcatalog/src/pages/docs/[type]/[id]/[version]/changelog/index.astro +4 -6
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
log_build_default
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
5
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-5GNBQGFW.js";
|
|
4
|
+
import "../chunk-AREJNU2F.js";
|
|
5
|
+
import "../chunk-LAI5QQUI.js";
|
|
6
6
|
import "../chunk-UPONRQSN.js";
|
|
7
7
|
export {
|
|
8
8
|
log_build_default as default
|
package/dist/constants.cjs
CHANGED
package/dist/constants.js
CHANGED
package/dist/eventcatalog.cjs
CHANGED
package/dist/eventcatalog.js
CHANGED
|
@@ -6,8 +6,8 @@ import {
|
|
|
6
6
|
} from "./chunk-PLNJC7NZ.js";
|
|
7
7
|
import {
|
|
8
8
|
log_build_default
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-5GNBQGFW.js";
|
|
10
|
+
import "./chunk-AREJNU2F.js";
|
|
11
11
|
import {
|
|
12
12
|
catalogToAstro,
|
|
13
13
|
checkAndConvertMdToMdx
|
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
import "./chunk-55D645EH.js";
|
|
16
16
|
import {
|
|
17
17
|
VERSION
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-LAI5QQUI.js";
|
|
19
19
|
import {
|
|
20
20
|
getProjectOutDir,
|
|
21
21
|
isAuthEnabled,
|
|
@@ -14,7 +14,7 @@ export class Page extends HybridPage {
|
|
|
14
14
|
|
|
15
15
|
const { pageDataLoader } = await import('@utils/page-loaders/page-data-loader');
|
|
16
16
|
|
|
17
|
-
const itemTypes: PageTypes[] = ['events', 'commands', 'queries', 'services', 'domains', 'flows'];
|
|
17
|
+
const itemTypes: PageTypes[] = ['events', 'commands', 'queries', 'services', 'domains', 'flows', 'containers'];
|
|
18
18
|
const allItems = await Promise.all(itemTypes.map((type) => pageDataLoader[type]()));
|
|
19
19
|
|
|
20
20
|
return allItems.flatMap((items, index) =>
|
|
@@ -9,6 +9,7 @@ import {
|
|
|
9
9
|
MagnifyingGlassIcon,
|
|
10
10
|
QueueListIcon,
|
|
11
11
|
} from '@heroicons/react/24/outline';
|
|
12
|
+
import { DatabaseIcon } from 'lucide-react';
|
|
12
13
|
import { render, getEntry } from 'astro:content';
|
|
13
14
|
import mdxComponents from '@components/MDX/components';
|
|
14
15
|
import 'diff2html/bundles/css/diff2html.min.css';
|
|
@@ -96,18 +97,15 @@ const getBadge = () => {
|
|
|
96
97
|
class: 'text-yellow-400',
|
|
97
98
|
};
|
|
98
99
|
}
|
|
100
|
+
if (props.collection === 'containers') {
|
|
101
|
+
return { backgroundColor: 'blue', textColor: 'blue', content: 'Container', icon: DatabaseIcon, class: 'text-blue-400' };
|
|
102
|
+
}
|
|
99
103
|
if (props.collection === 'flows') {
|
|
100
104
|
return { backgroundColor: 'teal', textColor: 'teal', content: 'Flow', icon: QueueListIcon, class: 'text-teal-400' };
|
|
101
105
|
}
|
|
102
106
|
};
|
|
103
107
|
|
|
104
108
|
const badges = [getBadge()];
|
|
105
|
-
import { HomeIcon } from '@heroicons/react/20/solid';
|
|
106
|
-
|
|
107
|
-
const pages = [
|
|
108
|
-
{ name: 'Projects', href: '#', current: false },
|
|
109
|
-
{ name: 'Project Nero', href: '#', current: true },
|
|
110
|
-
];
|
|
111
109
|
---
|
|
112
110
|
|
|
113
111
|
<VerticalSideBarLayout title="ChangeLog">
|