@eventcatalog/core 2.44.4 → 2.44.5
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-5JM4QIHQ.js → chunk-ULCIAC3E.js} +1 -1
- package/dist/{chunk-DFFXN3Z4.js → chunk-WG64IAI3.js} +1 -1
- package/dist/{chunk-DAC5BKLG.js → chunk-WO7XQZNY.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/components/MDX/NodeGraph/VisualiserSearch.tsx +1 -1
- package/eventcatalog/src/components/MDX/SchemaViewer/SchemaViewer.astro +1 -1
- 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-WO7XQZNY.js";
|
|
4
|
+
import "../chunk-ULCIAC3E.js";
|
|
5
|
+
import "../chunk-WG64IAI3.js";
|
|
6
6
|
import "../chunk-E7TXTI7G.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-DCLTVJDP.js";
|
|
7
7
|
import {
|
|
8
8
|
log_build_default
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-WO7XQZNY.js";
|
|
10
|
+
import "./chunk-ULCIAC3E.js";
|
|
11
11
|
import {
|
|
12
12
|
catalogToAstro,
|
|
13
13
|
checkAndConvertMdToMdx
|
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
import "./chunk-EXAALOQA.js";
|
|
16
16
|
import {
|
|
17
17
|
VERSION
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-WG64IAI3.js";
|
|
19
19
|
import {
|
|
20
20
|
isAuthEnabled,
|
|
21
21
|
isBackstagePluginEnabled,
|
|
@@ -140,7 +140,7 @@ const VisualiserSearch = forwardRef<VisualiserSearchRef, VisualiserSearchProps>(
|
|
|
140
140
|
// Close suggestions when clicking outside
|
|
141
141
|
useEffect(() => {
|
|
142
142
|
const handleClickOutside = (event: MouseEvent) => {
|
|
143
|
-
if (containerRef.current && !containerRef.current.contains(event.target as
|
|
143
|
+
if (containerRef.current && !containerRef.current.contains(event.target as any)) {
|
|
144
144
|
setShowSuggestions(false);
|
|
145
145
|
setSelectedSuggestionIndex(-1);
|
|
146
146
|
}
|
|
@@ -151,7 +151,7 @@ function processSchema(schema: any, rootSchema?: any): any {
|
|
|
151
151
|
|
|
152
152
|
// Merge all properties from variants for display
|
|
153
153
|
const allProperties: Record<string, any> = {};
|
|
154
|
-
processedVariants.forEach((variant) => {
|
|
154
|
+
processedVariants.forEach((variant: any) => {
|
|
155
155
|
if (variant.properties) {
|
|
156
156
|
Object.assign(allProperties, variant.properties);
|
|
157
157
|
}
|