Skip to content

Commit 6bdcbb5

Browse files
authored
Bump components to 9.11.2 to get new HiveNavigation animation (#7309)
1 parent e381023 commit 6bdcbb5

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

packages/web/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@radix-ui/react-icons": "1.3.2",
1919
"@radix-ui/react-tabs": "1.1.2",
2020
"@radix-ui/react-tooltip": "1.1.6",
21-
"@theguild/components": "9.11.0",
21+
"@theguild/components": "9.11.2",
2222
"@types/rss": "^0.0.32",
2323
"class-variance-authority": "0.7.1",
2424
"clsx": "2.1.1",

packages/web/docs/src/components/ecosystem-management/dashed-line.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@ export interface DashedLineProps extends React.SVGProps<SVGSVGElement> {
55
short?: boolean;
66
}
77

8-
export function DashedLine(props: DashedLineProps) {
8+
export function DashedLine({ short, className, ...rest }: DashedLineProps) {
99
const commonProps: React.SVGProps<SVGSVGElement> = {
1010
preserveAspectRatio: 'none',
1111
stroke: 'currentColor',
1212
fill: 'none',
1313
vectorEffect: 'non-scaling-stroke',
14-
...props,
14+
...rest,
1515
};
1616

17-
if (props.short) {
17+
if (short) {
1818
return (
1919
<svg
2020
{...commonProps}
2121
width="111"
2222
viewBox="0 0 111 114"
23-
className={cn('h-full overflow-visible', css['animate-dash-reverse'], props.className)}
23+
className={cn('h-full overflow-visible', css['animate-dash-reverse'], className)}
2424
>
2525
<path
2626
d="M0 112.5H31.3352C44.59 112.5 55.3351 101.755 55.3352 88.5001L55.3355 25.4999C55.3356 12.2451 66.0807 1.50001 79.3355 1.5L111 1.5"
@@ -36,7 +36,7 @@ export function DashedLine(props: DashedLineProps) {
3636
{...commonProps}
3737
width="107"
3838
viewBox="0 0 107 326"
39-
className={cn('h-full overflow-visible', css['animate-dash'], props.className)}
39+
className={cn('h-full overflow-visible', css['animate-dash'], className)}
4040
>
4141
<path
4242
d="M 150 0 H 77.659 c -13.255 0 -24 10.745 -24 24 V 303.5 c 0 13.255 -10.746 24 -24 24 H 0"

pnpm-lock.yaml

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)