@theguild/components 8.1.2-alpha-20241218051239-f6d218a0f8e48ed07eea3fb81bd193fac7be31a2 → 8.1.2-alpha-20241218051656-bac8485cca2996034e05055280650603b9408e94
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/index.d.mts +0 -1
- package/dist/index.js +0 -2
- package/dist/server/index.d.mts +2 -0
- package/dist/server/index.js +2 -0
- package/dist/{shared-meta-items.d.mts → server/shared-meta-items.d.mts} +1 -1
- package/dist/{shared-meta-items.js → server/shared-meta-items.js} +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -38,7 +38,6 @@ export { AngularLettermark, ConductorLettermark, ConfigLettermark, EnvelopLetter
|
|
|
38
38
|
export { cn } from './cn.mjs';
|
|
39
39
|
export { NextPageProps } from './next-types.mjs';
|
|
40
40
|
export { normalizePages } from 'nextra/normalize-pages';
|
|
41
|
-
export { sharedMetaItems } from './shared-meta-items.mjs';
|
|
42
41
|
export { GraphQLConfCard, GraphQLConfCardProps } from './components/hive-navigation/graphql-conf-card.mjs';
|
|
43
42
|
import 'react';
|
|
44
43
|
import 'url';
|
package/dist/index.js
CHANGED
|
@@ -21,7 +21,6 @@ export * from "./logos";
|
|
|
21
21
|
import { cn } from "./cn";
|
|
22
22
|
export * from "./next-types";
|
|
23
23
|
import { normalizePages } from "nextra/normalize-pages";
|
|
24
|
-
import { sharedMetaItems } from "./shared-meta-items";
|
|
25
24
|
export {
|
|
26
25
|
Banner,
|
|
27
26
|
Bleed,
|
|
@@ -40,7 +39,6 @@ export {
|
|
|
40
39
|
Tabs,
|
|
41
40
|
cn,
|
|
42
41
|
normalizePages,
|
|
43
|
-
sharedMetaItems,
|
|
44
42
|
useConfig,
|
|
45
43
|
useMounted,
|
|
46
44
|
useTheme,
|
package/dist/server/index.d.mts
CHANGED
|
@@ -4,12 +4,14 @@ export { fetchFilePathsFromGitHub } from 'nextra/fetch-filepaths-from-github';
|
|
|
4
4
|
export { compileMdx } from 'nextra/compile';
|
|
5
5
|
export { createIndexPage, getPageMap } from 'nextra/page-map';
|
|
6
6
|
export { fetchPackageInfo } from './npm.mjs';
|
|
7
|
+
export { sharedMetaItems } from './shared-meta-items.mjs';
|
|
7
8
|
export { GuildLayout, getDefaultMetadata } from './theme-layout.mjs';
|
|
8
9
|
import 'next/image';
|
|
9
10
|
import 'nextra';
|
|
10
11
|
import 'nextra/mdx-components/pre/index';
|
|
11
12
|
import 'react/jsx-runtime';
|
|
12
13
|
import 'react';
|
|
14
|
+
import '../products.mjs';
|
|
13
15
|
import 'next';
|
|
14
16
|
import 'nextra-theme-docs';
|
|
15
17
|
import 'nextra/components';
|
package/dist/server/index.js
CHANGED
|
@@ -4,6 +4,7 @@ import { fetchFilePathsFromGitHub } from "nextra/fetch-filepaths-from-github";
|
|
|
4
4
|
import { compileMdx } from "nextra/compile";
|
|
5
5
|
import { getPageMap, createIndexPage } from "nextra/page-map";
|
|
6
6
|
import { fetchPackageInfo } from "./npm.js";
|
|
7
|
+
import { sharedMetaItems } from "./shared-meta-items";
|
|
7
8
|
import { GuildLayout, getDefaultMetadata } from "./theme-layout.js";
|
|
8
9
|
export {
|
|
9
10
|
GuildLayout,
|
|
@@ -14,5 +15,6 @@ export {
|
|
|
14
15
|
fetchPackageInfo,
|
|
15
16
|
getDefaultMetadata,
|
|
16
17
|
getPageMap,
|
|
18
|
+
sharedMetaItems,
|
|
17
19
|
useMDXComponents
|
|
18
20
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PRODUCTS_MENU_LIST } from "
|
|
1
|
+
import { PRODUCTS_MENU_LIST } from "../products";
|
|
2
2
|
function sharedMetaItems(options) {
|
|
3
3
|
return {
|
|
4
4
|
products: {
|
|
@@ -38,7 +38,7 @@ function sharedMetaItems(options) {
|
|
|
38
38
|
"graphql-foundation": {
|
|
39
39
|
title: "GraphQL Foundation",
|
|
40
40
|
type: "page",
|
|
41
|
-
href: "https://graphql.org/community/foundation
|
|
41
|
+
href: "https://graphql.org/community/foundation"
|
|
42
42
|
}
|
|
43
43
|
};
|
|
44
44
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theguild/components",
|
|
3
|
-
"version": "8.1.2-alpha-
|
|
3
|
+
"version": "8.1.2-alpha-20241218051656-bac8485cca2996034e05055280650603b9408e94",
|
|
4
4
|
"repository": {
|
|
5
5
|
"url": "https://github.com/the-guild-org/docs",
|
|
6
6
|
"directory": "packages/components"
|