@eventcatalog/core 2.43.2 → 2.43.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/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-AHBMOYOU.js → chunk-JZJVAKU2.js} +1 -1
- package/dist/{chunk-63AEX7TR.js → chunk-TU6VXO7L.js} +1 -1
- package/dist/{chunk-MJG5DK3Z.js → chunk-V25ESTIN.js} +1 -1
- package/dist/constants.cjs +1 -1
- package/dist/constants.js +1 -1
- package/dist/eventcatalog.auth.d.cts +2 -0
- package/dist/eventcatalog.auth.d.ts +2 -0
- package/dist/eventcatalog.cjs +1 -1
- package/dist/eventcatalog.js +3 -3
- package/eventcatalog/src/components/Header.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-TU6VXO7L.js";
|
|
4
|
+
import "../chunk-JZJVAKU2.js";
|
|
5
|
+
import "../chunk-V25ESTIN.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
|
@@ -3,10 +3,12 @@ import { GitHubProfile } from '@auth/core/providers/github';
|
|
|
3
3
|
import { OktaProfile } from '@auth/core/providers/okta';
|
|
4
4
|
import { Auth0Profile } from '@auth/core/providers/auth0';
|
|
5
5
|
import { MicrosoftEntraIDProfile } from '@auth/core/providers/microsoft-entra-id';
|
|
6
|
+
import { GoogleProfile } from '@auth/core/providers/google';
|
|
6
7
|
|
|
7
8
|
interface EventCatalogAuthConfig {
|
|
8
9
|
providers?: {
|
|
9
10
|
github?: OAuthUserConfig<GitHubProfile>;
|
|
11
|
+
google?: OAuthUserConfig<GoogleProfile>;
|
|
10
12
|
okta?: OAuthUserConfig<OktaProfile>;
|
|
11
13
|
auth0?: OAuthUserConfig<Auth0Profile>;
|
|
12
14
|
entra?: OAuthUserConfig<MicrosoftEntraIDProfile>;
|
|
@@ -3,10 +3,12 @@ import { GitHubProfile } from '@auth/core/providers/github';
|
|
|
3
3
|
import { OktaProfile } from '@auth/core/providers/okta';
|
|
4
4
|
import { Auth0Profile } from '@auth/core/providers/auth0';
|
|
5
5
|
import { MicrosoftEntraIDProfile } from '@auth/core/providers/microsoft-entra-id';
|
|
6
|
+
import { GoogleProfile } from '@auth/core/providers/google';
|
|
6
7
|
|
|
7
8
|
interface EventCatalogAuthConfig {
|
|
8
9
|
providers?: {
|
|
9
10
|
github?: OAuthUserConfig<GitHubProfile>;
|
|
11
|
+
google?: OAuthUserConfig<GoogleProfile>;
|
|
10
12
|
okta?: OAuthUserConfig<OktaProfile>;
|
|
11
13
|
auth0?: OAuthUserConfig<Auth0Profile>;
|
|
12
14
|
entra?: OAuthUserConfig<MicrosoftEntraIDProfile>;
|
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-TU6VXO7L.js";
|
|
10
|
+
import "./chunk-JZJVAKU2.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-V25ESTIN.js";
|
|
19
19
|
import {
|
|
20
20
|
isAuthEnabled,
|
|
21
21
|
isBackstagePluginEnabled,
|
|
@@ -71,7 +71,7 @@ const repositoryUrl = catalog?.repositoryUrl || 'https://github.com/event-catalo
|
|
|
71
71
|
</button>
|
|
72
72
|
<div
|
|
73
73
|
id="profile-dropdown"
|
|
74
|
-
class="hidden absolute right-0 mt-2 w-48 bg-white rounded-md shadow-lg py-1 z-50 border border-gray-100"
|
|
74
|
+
class="hidden absolute right-0 mt-2 w-48 bg-white rounded-md shadow-lg py-1 z-50 border border-gray-100 overflow-hidden"
|
|
75
75
|
>
|
|
76
76
|
<div class="px-4 py-2 text-sm text-gray-700 border-b border-gray-100">
|
|
77
77
|
<div class="font-medium">{session.user?.name || 'User'}</div>
|