@theguild/components 9.3.0-alpha-20250123134229-7c0691e5cb3263e1fe83a9fc2991e8f04f38eea3 → 9.3.0-alpha-20250123141825-0d91f31e7c5498c5f48ce00872de97d3d09aa26b
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/components/decorations/index.d.mts +4 -4
- package/dist/components/decorations/index.js +4 -8
- package/dist/components/hero/hero-decoration-from-logo.d.mts +12 -0
- package/dist/components/hero/hero-decoration-from-logo.js +31 -0
- package/dist/components/hero/hero-gradient-defs.d.mts +5 -0
- package/dist/components/hero/hero-gradient-defs.js +32 -0
- package/dist/components/hero/hero-gradient-ids.d.mts +5 -0
- package/dist/components/hero/hero-gradient-ids.js +9 -0
- package/dist/components/hero/hero-logo.d.mts +12 -0
- package/dist/components/hero/hero-logo.js +36 -0
- package/dist/components/hero/index.d.mts +8 -9
- package/dist/components/hero/index.js +11 -89
- package/dist/components/index.d.mts +4 -2
- package/dist/index.d.mts +4 -2
- package/package.json +1 -1
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
export { ReactComponent as ArchDecoration, ReactComponent as ArchDecorationGradientDefs, ReactComponent as LargeHiveIconDecoration } from '../../logos/angular.mjs';
|
|
2
|
+
export { ReactComponent as ArchDecoration, ReactComponent as ArchDecorationGradientDefs, ReactComponent as HighlightDecoration, ReactComponent as LargeHiveIconDecoration } from '../../logos/angular.mjs';
|
|
3
3
|
import 'react';
|
|
4
4
|
import 'nextra/icons';
|
|
5
5
|
|
|
6
|
+
type DecorationIsolationProps = React.HTMLAttributes<HTMLDivElement>;
|
|
6
7
|
/**
|
|
7
8
|
* Decorations must be isolated, as clicking id links scrolls the container with overflow: hidden.
|
|
8
9
|
*/
|
|
9
|
-
declare function DecorationIsolation(props:
|
|
10
|
-
declare const HighlightDecoration: (props: React.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
10
|
+
declare function DecorationIsolation(props: DecorationIsolationProps): react_jsx_runtime.JSX.Element;
|
|
11
11
|
|
|
12
|
-
export { DecorationIsolation,
|
|
12
|
+
export { DecorationIsolation, type DecorationIsolationProps };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { cn } from "../../cn";
|
|
3
|
-
import { ReactComponent as HighlightDecorationSvg } from "./highlight-decoration";
|
|
4
3
|
import { ReactComponent } from "./arch-decoration";
|
|
5
4
|
import { ReactComponent as ReactComponent2 } from "./arch-decoration-gradient-defs";
|
|
6
|
-
import { ReactComponent as ReactComponent3 } from "./
|
|
5
|
+
import { ReactComponent as ReactComponent3 } from "./highlight-decoration";
|
|
6
|
+
import { ReactComponent as ReactComponent4 } from "./large-hive-icon-decoration";
|
|
7
7
|
function DecorationIsolation(props) {
|
|
8
8
|
return /* @__PURE__ */ jsx(
|
|
9
9
|
"div",
|
|
@@ -13,14 +13,10 @@ function DecorationIsolation(props) {
|
|
|
13
13
|
}
|
|
14
14
|
);
|
|
15
15
|
}
|
|
16
|
-
const HighlightDecoration = (props) => (
|
|
17
|
-
// eslint-disable-next-line tailwindcss/no-custom-classname
|
|
18
|
-
/* @__PURE__ */ jsx(HighlightDecorationSvg, { ...props, className: cn(props.className, "firefox-highlight-fix") })
|
|
19
|
-
);
|
|
20
16
|
export {
|
|
21
17
|
ReactComponent as ArchDecoration,
|
|
22
18
|
ReactComponent2 as ArchDecorationGradientDefs,
|
|
23
19
|
DecorationIsolation,
|
|
24
|
-
HighlightDecoration,
|
|
25
|
-
|
|
20
|
+
ReactComponent3 as HighlightDecoration,
|
|
21
|
+
ReactComponent4 as LargeHiveIconDecoration
|
|
26
22
|
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { ReactElement } from 'react';
|
|
3
|
+
import { DecorationIsolationProps } from '../decorations/index.mjs';
|
|
4
|
+
import '../../logos/angular.mjs';
|
|
5
|
+
import 'nextra/icons';
|
|
6
|
+
|
|
7
|
+
interface HeroDecorationFromLogoProps extends DecorationIsolationProps {
|
|
8
|
+
logo: ReactElement;
|
|
9
|
+
}
|
|
10
|
+
declare function HeroDecorationFromLogo({ logo, ...rest }: HeroDecorationFromLogoProps): react_jsx_runtime.JSX.Element;
|
|
11
|
+
|
|
12
|
+
export { HeroDecorationFromLogo, type HeroDecorationFromLogoProps };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { cloneElement } from "react";
|
|
3
|
+
import { cn } from "../../cn";
|
|
4
|
+
import { DecorationIsolation } from "../decorations";
|
|
5
|
+
import { GRADIENT_WHITE_2_ID } from "./hero-gradient-ids";
|
|
6
|
+
function HeroDecorationFromLogo({ logo, ...rest }) {
|
|
7
|
+
return /* @__PURE__ */ jsxs(DecorationIsolation, { ...rest, className: cn("-z-10", rest.className), children: [
|
|
8
|
+
cloneElement(logo, {
|
|
9
|
+
className: cn("absolute -left-1/2 top-1/2 -translate-y-1/2 stroke-white/10 max-lg:hidden"),
|
|
10
|
+
fill: `url(#${GRADIENT_WHITE_2_ID})`,
|
|
11
|
+
strokeWidth: "0.1",
|
|
12
|
+
height: "50%",
|
|
13
|
+
width: "auto",
|
|
14
|
+
opacity: 0.8
|
|
15
|
+
}),
|
|
16
|
+
cloneElement(logo, {
|
|
17
|
+
className: cn(
|
|
18
|
+
"absolute top-1/2 -translate-y-1/2 stroke-white/10",
|
|
19
|
+
"-right-1/2 lg:-right-1/3",
|
|
20
|
+
"h-2/3 lg:h-[calc(100%-5%)]"
|
|
21
|
+
),
|
|
22
|
+
fill: `url(#${GRADIENT_WHITE_2_ID})`,
|
|
23
|
+
strokeWidth: "0.1",
|
|
24
|
+
width: "auto",
|
|
25
|
+
opacity: 0.6
|
|
26
|
+
})
|
|
27
|
+
] });
|
|
28
|
+
}
|
|
29
|
+
export {
|
|
30
|
+
HeroDecorationFromLogo
|
|
31
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { GRADIENT_GREEN_ID, GRADIENT_WHITE_2_ID, GRADIENT_WHITE_ID } from "./hero-gradient-ids";
|
|
3
|
+
function HeroGradientDefs() {
|
|
4
|
+
return /* @__PURE__ */ jsx(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
width: "96",
|
|
8
|
+
height: "96",
|
|
9
|
+
viewBox: "0 0 96 96",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11
|
+
className: "pointer-events-none absolute",
|
|
12
|
+
"aria-hidden": true,
|
|
13
|
+
children: /* @__PURE__ */ jsxs("defs", { children: [
|
|
14
|
+
/* @__PURE__ */ jsxs("linearGradient", { id: GRADIENT_GREEN_ID, x1: "0%", y1: "0%", x2: "100%", y2: "100%", children: [
|
|
15
|
+
/* @__PURE__ */ jsx("stop", { stopColor: "#3B736A" }),
|
|
16
|
+
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#15433C" })
|
|
17
|
+
] }),
|
|
18
|
+
/* @__PURE__ */ jsxs("linearGradient", { id: GRADIENT_WHITE_ID, x1: "0%", y1: "0%", x2: "100%", y2: "100%", children: [
|
|
19
|
+
/* @__PURE__ */ jsx("stop", { stopColor: "#fff", stopOpacity: "0.8" }),
|
|
20
|
+
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#fff", stopOpacity: "0.4" })
|
|
21
|
+
] }),
|
|
22
|
+
/* @__PURE__ */ jsxs("linearGradient", { id: GRADIENT_WHITE_2_ID, x1: "0%", y1: "0%", x2: "100%", y2: "100%", children: [
|
|
23
|
+
/* @__PURE__ */ jsx("stop", { stopColor: "#fff", stopOpacity: "0.1" }),
|
|
24
|
+
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#fff", stopOpacity: "0.5" })
|
|
25
|
+
] })
|
|
26
|
+
] })
|
|
27
|
+
}
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
export {
|
|
31
|
+
HeroGradientDefs
|
|
32
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { ReactElement } from 'react';
|
|
3
|
+
|
|
4
|
+
interface HeroLogoProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
5
|
+
children: ReactElement<{
|
|
6
|
+
fill?: string;
|
|
7
|
+
className?: string;
|
|
8
|
+
}>;
|
|
9
|
+
}
|
|
10
|
+
declare function HeroLogo({ children, className, ...rest }: HeroLogoProps): react_jsx_runtime.JSX.Element;
|
|
11
|
+
|
|
12
|
+
export { HeroLogo, type HeroLogoProps };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { cloneElement } from "react";
|
|
3
|
+
import { cn } from "../../cn";
|
|
4
|
+
import { GRADIENT_GREEN_ID, GRADIENT_WHITE_ID } from "./hero-gradient-ids";
|
|
5
|
+
function HeroLogo({ children, className, ...rest }) {
|
|
6
|
+
return /* @__PURE__ */ jsxs("div", { className: cn("relative", className), ...rest, children: [
|
|
7
|
+
cloneElement(children, {
|
|
8
|
+
fill: `url(#${GRADIENT_WHITE_ID})`,
|
|
9
|
+
className: cn(
|
|
10
|
+
"absolute inset-1/2 size-1/2 -translate-x-1/2 -translate-y-1/2",
|
|
11
|
+
children.props.className
|
|
12
|
+
)
|
|
13
|
+
}),
|
|
14
|
+
/* @__PURE__ */ jsx(LogoBadgeBackground, {})
|
|
15
|
+
] });
|
|
16
|
+
}
|
|
17
|
+
function LogoBadgeBackground() {
|
|
18
|
+
return /* @__PURE__ */ jsxs("svg", { width: "96", height: "96", viewBox: "0 0 96 96", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
19
|
+
/* @__PURE__ */ jsx("rect", { width: "96", height: "96", rx: "24", fill: `url(#${GRADIENT_GREEN_ID})` }),
|
|
20
|
+
/* @__PURE__ */ jsx(
|
|
21
|
+
"rect",
|
|
22
|
+
{
|
|
23
|
+
x: "0.5",
|
|
24
|
+
y: "0.5",
|
|
25
|
+
width: "95",
|
|
26
|
+
height: "95",
|
|
27
|
+
rx: "23.5",
|
|
28
|
+
stroke: `url(#${GRADIENT_WHITE_ID})`
|
|
29
|
+
}
|
|
30
|
+
),
|
|
31
|
+
/* @__PURE__ */ jsx("path", { d: "M57.0264 32.1652H48.9577L53.8032 27.3197L48.4855 22L43.1658 27.3197L48.0114 32.1652H39.9427C38.9042 32.1652 37.9069 32.5786 37.1721 33.3134L23 47.4855L28.3197 52.8052L45.715 35.4099C47.2452 33.8797 49.7258 33.8797 51.2561 35.4099L68.6513 52.8052L73.971 47.4855L59.797 33.3114C59.0622 32.5767 58.0649 32.1632 57.0264 32.1632V32.1652ZM48.4854 63.3623L43.1665 68.6811L48.4854 74L53.8042 68.6811L48.4854 63.3623ZM39.9446 52.8054H48.4855H48.4894H57.0303C58.0688 52.8054 59.0661 53.2188 59.8008 53.9536L63.89 58.0428L58.5704 63.3625L51.258 56.0501C49.7277 54.5198 47.2472 54.5198 45.7169 56.0501L38.4045 63.3625L33.0848 58.0428L37.174 53.9536C37.9088 53.2188 38.9061 52.8054 39.9446 52.8054Z" })
|
|
32
|
+
] });
|
|
33
|
+
}
|
|
34
|
+
export {
|
|
35
|
+
HeroLogo
|
|
36
|
+
};
|
|
@@ -1,19 +1,18 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactNode, FC } from 'react';
|
|
2
|
+
export { HeroLogo } from './hero-logo.mjs';
|
|
3
|
+
export { HeroDecorationFromLogo } from './hero-decoration-from-logo.mjs';
|
|
4
|
+
import 'react/jsx-runtime';
|
|
5
|
+
import '../decorations/index.mjs';
|
|
6
|
+
import '../../logos/angular.mjs';
|
|
7
|
+
import 'nextra/icons';
|
|
2
8
|
|
|
3
9
|
interface HeroProps {
|
|
4
10
|
className?: string;
|
|
5
11
|
heading: string;
|
|
6
12
|
text: string;
|
|
7
13
|
checkmarks: string[];
|
|
8
|
-
top?: {
|
|
9
|
-
logo: ReactElement<{
|
|
10
|
-
className?: string;
|
|
11
|
-
fill?: string;
|
|
12
|
-
}>;
|
|
13
|
-
} | {
|
|
14
|
-
children: ReactNode;
|
|
15
|
-
};
|
|
16
14
|
children?: ReactNode;
|
|
15
|
+
top?: ReactNode;
|
|
17
16
|
}
|
|
18
17
|
declare const Hero: FC<HeroProps>;
|
|
19
18
|
|
|
@@ -1,112 +1,34 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { cloneElement, useId } from "react";
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
2
|
import { cn } from "../../cn";
|
|
4
3
|
import { Heading } from "../heading";
|
|
5
4
|
import { CheckIcon } from "../icons";
|
|
5
|
+
import { HeroGradientDefs } from "./hero-gradient-defs";
|
|
6
|
+
import { HeroLogo } from "./hero-logo";
|
|
7
|
+
import { HeroDecorationFromLogo } from "./hero-decoration-from-logo";
|
|
6
8
|
const Hero = (props) => {
|
|
7
|
-
const gradientWhiteId = useId();
|
|
8
|
-
const gradientWhiteId2 = useId();
|
|
9
|
-
const greenBgId = useId();
|
|
10
9
|
return /* @__PURE__ */ jsxs(
|
|
11
10
|
"div",
|
|
12
11
|
{
|
|
13
12
|
className: cn(
|
|
14
|
-
"relative isolate
|
|
13
|
+
"relative isolate flex max-w-[90rem] flex-col items-center justify-center gap-6 overflow-hidden rounded-3xl bg-blue-400 px-4 py-6 max-sm:mt-2 sm:py-12 md:gap-8 lg:py-24",
|
|
15
14
|
props.className
|
|
16
15
|
),
|
|
17
16
|
children: [
|
|
18
|
-
|
|
19
|
-
cloneElement(props.top.logo, {
|
|
20
|
-
fill: `url(#${gradientWhiteId})`,
|
|
21
|
-
className: cn(
|
|
22
|
-
"absolute inset-1/2 size-1/2 -translate-x-1/2 -translate-y-1/2",
|
|
23
|
-
props.top.logo.props.className
|
|
24
|
-
)
|
|
25
|
-
}),
|
|
26
|
-
/* @__PURE__ */ jsxs(
|
|
27
|
-
"svg",
|
|
28
|
-
{
|
|
29
|
-
width: "96",
|
|
30
|
-
height: "96",
|
|
31
|
-
viewBox: "0 0 96 96",
|
|
32
|
-
fill: "none",
|
|
33
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
34
|
-
children: [
|
|
35
|
-
/* @__PURE__ */ jsx("rect", { width: "96", height: "96", rx: "24", fill: `url(#${greenBgId})` }),
|
|
36
|
-
/* @__PURE__ */ jsx(
|
|
37
|
-
"rect",
|
|
38
|
-
{
|
|
39
|
-
x: "0.5",
|
|
40
|
-
y: "0.5",
|
|
41
|
-
width: "95",
|
|
42
|
-
height: "95",
|
|
43
|
-
rx: "23.5",
|
|
44
|
-
stroke: `url(#${gradientWhiteId})`
|
|
45
|
-
}
|
|
46
|
-
),
|
|
47
|
-
/* @__PURE__ */ jsx("path", { d: "M57.0264 32.1652H48.9577L53.8032 27.3197L48.4855 22L43.1658 27.3197L48.0114 32.1652H39.9427C38.9042 32.1652 37.9069 32.5786 37.1721 33.3134L23 47.4855L28.3197 52.8052L45.715 35.4099C47.2452 33.8797 49.7258 33.8797 51.2561 35.4099L68.6513 52.8052L73.971 47.4855L59.797 33.3114C59.0622 32.5767 58.0649 32.1632 57.0264 32.1632V32.1652ZM48.4854 63.3623L43.1665 68.6811L48.4854 74L53.8042 68.6811L48.4854 63.3623ZM39.9446 52.8054H48.4855H48.4894H57.0303C58.0688 52.8054 59.0661 53.2188 59.8008 53.9536L63.89 58.0428L58.5704 63.3625L51.258 56.0501C49.7277 54.5198 47.2472 54.5198 45.7169 56.0501L38.4045 63.3625L33.0848 58.0428L37.174 53.9536C37.9088 53.2188 38.9061 52.8054 39.9446 52.8054Z" }),
|
|
48
|
-
/* @__PURE__ */ jsxs("defs", { children: [
|
|
49
|
-
/* @__PURE__ */ jsxs(
|
|
50
|
-
"linearGradient",
|
|
51
|
-
{
|
|
52
|
-
id: greenBgId,
|
|
53
|
-
x1: "0",
|
|
54
|
-
y1: "0",
|
|
55
|
-
x2: "96",
|
|
56
|
-
y2: "96",
|
|
57
|
-
gradientUnits: "userSpaceOnUse",
|
|
58
|
-
children: [
|
|
59
|
-
/* @__PURE__ */ jsx("stop", { stopColor: "#3B736A" }),
|
|
60
|
-
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#15433C" })
|
|
61
|
-
]
|
|
62
|
-
}
|
|
63
|
-
),
|
|
64
|
-
/* @__PURE__ */ jsxs(
|
|
65
|
-
"linearGradient",
|
|
66
|
-
{
|
|
67
|
-
id: gradientWhiteId,
|
|
68
|
-
x1: "0",
|
|
69
|
-
y1: "0",
|
|
70
|
-
x2: "96",
|
|
71
|
-
y2: "96",
|
|
72
|
-
gradientUnits: "userSpaceOnUse",
|
|
73
|
-
children: [
|
|
74
|
-
/* @__PURE__ */ jsx("stop", { stopColor: "white", stopOpacity: "0.8" }),
|
|
75
|
-
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "white", stopOpacity: "0.4" })
|
|
76
|
-
]
|
|
77
|
-
}
|
|
78
|
-
),
|
|
79
|
-
/* @__PURE__ */ jsxs(
|
|
80
|
-
"linearGradient",
|
|
81
|
-
{
|
|
82
|
-
id: gradientWhiteId2,
|
|
83
|
-
x1: "1",
|
|
84
|
-
y1: "2",
|
|
85
|
-
x2: "161",
|
|
86
|
-
y2: "171",
|
|
87
|
-
gradientUnits: "userSpaceOnUse",
|
|
88
|
-
children: [
|
|
89
|
-
/* @__PURE__ */ jsx("stop", { stopColor: "white", stopOpacity: "0.1" }),
|
|
90
|
-
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "white", stopOpacity: "0.5" })
|
|
91
|
-
]
|
|
92
|
-
}
|
|
93
|
-
)
|
|
94
|
-
] })
|
|
95
|
-
]
|
|
96
|
-
}
|
|
97
|
-
)
|
|
98
|
-
] }) : props.top.children) }),
|
|
17
|
+
props.top,
|
|
99
18
|
/* @__PURE__ */ jsx(Heading, { as: "h1", size: "xl", className: "mx-auto max-w-3xl text-balance text-center", children: props.heading }),
|
|
100
19
|
/* @__PURE__ */ jsx("p", { className: "mx-auto w-[512px] max-w-[80%] text-center leading-6 text-green-800", children: props.text }),
|
|
101
20
|
/* @__PURE__ */ jsx("ul", { className: "mx-auto flex list-none gap-x-6 gap-y-2 text-sm font-medium max-md:flex-col", children: props.checkmarks.map((text) => /* @__PURE__ */ jsxs("li", { className: "flex items-center gap-2", children: [
|
|
102
21
|
/* @__PURE__ */ jsx(CheckIcon, { className: "text-green-800" }),
|
|
103
22
|
text
|
|
104
23
|
] }, text)) }),
|
|
105
|
-
/* @__PURE__ */ jsx("div", { className: "flex w-full justify-center gap-2 px-0.5 max-sm:flex-col sm:gap-4", children: props.children })
|
|
24
|
+
/* @__PURE__ */ jsx("div", { className: "flex w-full justify-center gap-2 px-0.5 max-sm:flex-col sm:gap-4", children: props.children }),
|
|
25
|
+
/* @__PURE__ */ jsx(HeroGradientDefs, {})
|
|
106
26
|
]
|
|
107
27
|
}
|
|
108
28
|
);
|
|
109
29
|
};
|
|
110
30
|
export {
|
|
111
|
-
Hero
|
|
31
|
+
Hero,
|
|
32
|
+
HeroDecorationFromLogo,
|
|
33
|
+
HeroLogo
|
|
112
34
|
};
|
|
@@ -6,7 +6,7 @@ export { HeroGradient } from './hero-gradient.mjs';
|
|
|
6
6
|
export { HeroIllustration } from './hero-illustration.mjs';
|
|
7
7
|
export { HeroMarketplace } from './hero-marketplace.mjs';
|
|
8
8
|
export { HeroVideo } from './hero-video.mjs';
|
|
9
|
-
export { ReactComponent as AccountBox, ReactComponent as AppsIcon, ReactComponent as ArchDecoration, ReactComponent as ArchDecorationGradientDefs, ReactComponent as ArrowIcon, ReactComponent as BardIcon, ReactComponent as CSAStarLevelOneIcon, ReactComponent as CaretSlimIcon, ReactComponent as CheckIcon, ReactComponent as CloseIcon, ReactComponent as CodegenIcon, ReactComponent as GroupIcon, ReactComponent as HiveGatewayIcon, ReactComponent as HiveIcon, ReactComponent as HonourIcon, ReactComponent as LargeHiveIconDecoration, ReactComponent as LinkedInIcon, ReactComponent as ListIcon, ReactComponent as MeshIcon, ReactComponent as MoreIcon, ReactComponent as PaperIcon, ReactComponent as PencilIcon, ReactComponent as RightCornerIcon, ReactComponent as SearchIcon, ReactComponent as ShareIcon, ReactComponent as ShieldFlashIcon, ReactComponent as StellateIcon, ReactComponent as TargetIcon, ReactComponent as TwitterIcon, ReactComponent as YogaIcon, ReactComponent as YouTubeIcon } from '../logos/angular.mjs';
|
|
9
|
+
export { ReactComponent as AccountBox, ReactComponent as AppsIcon, ReactComponent as ArchDecoration, ReactComponent as ArchDecorationGradientDefs, ReactComponent as ArrowIcon, ReactComponent as BardIcon, ReactComponent as CSAStarLevelOneIcon, ReactComponent as CaretSlimIcon, ReactComponent as CheckIcon, ReactComponent as CloseIcon, ReactComponent as CodegenIcon, ReactComponent as GroupIcon, ReactComponent as HighlightDecoration, ReactComponent as HiveGatewayIcon, ReactComponent as HiveIcon, ReactComponent as HonourIcon, ReactComponent as LargeHiveIconDecoration, ReactComponent as LinkedInIcon, ReactComponent as ListIcon, ReactComponent as MeshIcon, ReactComponent as MoreIcon, ReactComponent as PaperIcon, ReactComponent as PencilIcon, ReactComponent as RightCornerIcon, ReactComponent as SearchIcon, ReactComponent as ShareIcon, ReactComponent as ShieldFlashIcon, ReactComponent as StellateIcon, ReactComponent as TargetIcon, ReactComponent as TwitterIcon, ReactComponent as YogaIcon, ReactComponent as YouTubeIcon } from '../logos/angular.mjs';
|
|
10
10
|
export { DiscordIcon, GitHubIcon, InformationCircleIcon } from 'nextra/icons';
|
|
11
11
|
export { Image } from './image.mjs';
|
|
12
12
|
export { InfoList } from './info-list.mjs';
|
|
@@ -20,7 +20,7 @@ export { HiveFooter } from './hive-footer/index.mjs';
|
|
|
20
20
|
export { ToolsAndLibrariesCards } from './tools-and-libraries-cards/index.mjs';
|
|
21
21
|
export { Hero } from './hero/index.mjs';
|
|
22
22
|
export { AncillaryProductCard, MainProductCard, ProductCard, ProductCardProps } from './product-card/index.mjs';
|
|
23
|
-
export { DecorationIsolation,
|
|
23
|
+
export { DecorationIsolation, DecorationIsolationProps } from './decorations/index.mjs';
|
|
24
24
|
export { CallToAction, CallToActionProps } from './call-to-action.mjs';
|
|
25
25
|
export { CookiesConsent, CookiesConsentProps } from './cookies-consent.mjs';
|
|
26
26
|
export { Heading, HeadingProps } from './heading.mjs';
|
|
@@ -43,6 +43,8 @@ import 'next/image';
|
|
|
43
43
|
import 'next/link';
|
|
44
44
|
import 'react-player';
|
|
45
45
|
import 'react/jsx-runtime';
|
|
46
|
+
import './hero/hero-logo.mjs';
|
|
47
|
+
import './hero/hero-decoration-from-logo.mjs';
|
|
46
48
|
import '../products.mjs';
|
|
47
49
|
import '@giscus/react';
|
|
48
50
|
import './faq/attach-page-faq-schema.mjs';
|
package/dist/index.d.mts
CHANGED
|
@@ -9,7 +9,7 @@ export { HeroGradient } from './components/hero-gradient.mjs';
|
|
|
9
9
|
export { HeroIllustration } from './components/hero-illustration.mjs';
|
|
10
10
|
export { HeroMarketplace } from './components/hero-marketplace.mjs';
|
|
11
11
|
export { HeroVideo } from './components/hero-video.mjs';
|
|
12
|
-
export { ReactComponent as AccountBox, ReactComponent as AngularLogo, ReactComponent as AppsIcon, ReactComponent as ArchDecoration, ReactComponent as ArchDecorationGradientDefs, ReactComponent as ArrowIcon, ReactComponent as BardIcon, ReactComponent as CSAStarLevelOneIcon, ReactComponent as CaretSlimIcon, ReactComponent as CheckIcon, ReactComponent as CloseIcon, ReactComponent as CodeGeneratorLogo, ReactComponent as CodegenIcon, ReactComponent as ConductorLogo, ReactComponent as ConfigLogo, ReactComponent as FetsLogo, ReactComponent as GraphQLFoundationLogo, ReactComponent as GroupIcon, ReactComponent as GuildLogo, ReactComponent as HeltinLogo, ReactComponent as HiveCombinationMark, ReactComponent as HiveGatewayIcon, ReactComponent as HiveIcon, ReactComponent as HonourIcon, ReactComponent as KitQLLogo, ReactComponent as LargeHiveIconDecoration, ReactComponent as LinkedInIcon, ReactComponent as ListIcon, ReactComponent as MeshIcon, ReactComponent as MeshLogo, ReactComponent as ModulesLogo, ReactComponent as MoreIcon, ReactComponent as NextraLogo, ReactComponent as PaperIcon, ReactComponent as PencilIcon, ReactComponent as RightCornerIcon, ReactComponent as SSELogo, ReactComponent as SearchIcon, ReactComponent as ShareIcon, ReactComponent as ShieldFlashIcon, ReactComponent as StellateIcon, ReactComponent as StitchingLogo, ReactComponent as TargetIcon, ReactComponent as TheGuild, ReactComponent as ToolsLogo, ReactComponent as TwitterIcon, ReactComponent as WSLogo, ReactComponent as WhatsAppLogo, ReactComponent as YogaIcon, ReactComponent as YogaLogo, ReactComponent as YouTubeIcon } from './logos/angular.mjs';
|
|
12
|
+
export { ReactComponent as AccountBox, ReactComponent as AngularLogo, ReactComponent as AppsIcon, ReactComponent as ArchDecoration, ReactComponent as ArchDecorationGradientDefs, ReactComponent as ArrowIcon, ReactComponent as BardIcon, ReactComponent as CSAStarLevelOneIcon, ReactComponent as CaretSlimIcon, ReactComponent as CheckIcon, ReactComponent as CloseIcon, ReactComponent as CodeGeneratorLogo, ReactComponent as CodegenIcon, ReactComponent as ConductorLogo, ReactComponent as ConfigLogo, ReactComponent as FetsLogo, ReactComponent as GraphQLFoundationLogo, ReactComponent as GroupIcon, ReactComponent as GuildLogo, ReactComponent as HeltinLogo, ReactComponent as HighlightDecoration, ReactComponent as HiveCombinationMark, ReactComponent as HiveGatewayIcon, ReactComponent as HiveIcon, ReactComponent as HonourIcon, ReactComponent as KitQLLogo, ReactComponent as LargeHiveIconDecoration, ReactComponent as LinkedInIcon, ReactComponent as ListIcon, ReactComponent as MeshIcon, ReactComponent as MeshLogo, ReactComponent as ModulesLogo, ReactComponent as MoreIcon, ReactComponent as NextraLogo, ReactComponent as PaperIcon, ReactComponent as PencilIcon, ReactComponent as RightCornerIcon, ReactComponent as SSELogo, ReactComponent as SearchIcon, ReactComponent as ShareIcon, ReactComponent as ShieldFlashIcon, ReactComponent as StellateIcon, ReactComponent as StitchingLogo, ReactComponent as TargetIcon, ReactComponent as TheGuild, ReactComponent as ToolsLogo, ReactComponent as TwitterIcon, ReactComponent as WSLogo, ReactComponent as WhatsAppLogo, ReactComponent as YogaIcon, ReactComponent as YogaLogo, ReactComponent as YouTubeIcon } from './logos/angular.mjs';
|
|
13
13
|
export { DiscordIcon, GitHubIcon, InformationCircleIcon } from 'nextra/icons';
|
|
14
14
|
export { Image } from './components/image.mjs';
|
|
15
15
|
export { InfoList } from './components/info-list.mjs';
|
|
@@ -23,7 +23,7 @@ export { HiveFooter } from './components/hive-footer/index.mjs';
|
|
|
23
23
|
export { ToolsAndLibrariesCards } from './components/tools-and-libraries-cards/index.mjs';
|
|
24
24
|
export { Hero } from './components/hero/index.mjs';
|
|
25
25
|
export { AncillaryProductCard, MainProductCard, ProductCard, ProductCardProps } from './components/product-card/index.mjs';
|
|
26
|
-
export { DecorationIsolation,
|
|
26
|
+
export { DecorationIsolation, DecorationIsolationProps } from './components/decorations/index.mjs';
|
|
27
27
|
export { CallToAction, CallToActionProps } from './components/call-to-action.mjs';
|
|
28
28
|
export { CookiesConsent, CookiesConsentProps } from './components/cookies-consent.mjs';
|
|
29
29
|
export { Heading, HeadingProps } from './components/heading.mjs';
|
|
@@ -49,6 +49,8 @@ import 'react';
|
|
|
49
49
|
import 'url';
|
|
50
50
|
import 'next/image';
|
|
51
51
|
import 'react/jsx-runtime';
|
|
52
|
+
import './components/hero/hero-logo.mjs';
|
|
53
|
+
import './components/hero/hero-decoration-from-logo.mjs';
|
|
52
54
|
import '@giscus/react';
|
|
53
55
|
import './components/faq/attach-page-faq-schema.mjs';
|
|
54
56
|
import 'next/link';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theguild/components",
|
|
3
|
-
"version": "9.3.0-alpha-
|
|
3
|
+
"version": "9.3.0-alpha-20250123141825-0d91f31e7c5498c5f48ce00872de97d3d09aa26b",
|
|
4
4
|
"repository": {
|
|
5
5
|
"url": "https://github.com/the-guild-org/docs",
|
|
6
6
|
"directory": "packages/components"
|