@stackshift-ui/navigation 6.1.0-alpha.5 → 6.1.0-alpha.6
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/package.json +3 -3
- package/src/navigation_h.tsx +3 -8
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stackshift-ui/navigation",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "6.1.0-alpha.
|
|
4
|
+
"version": "6.1.0-alpha.6",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"main": "./dist/index.js",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"typescript": "^5.6.2",
|
|
30
30
|
"vite-tsconfig-paths": "^5.0.1",
|
|
31
31
|
"vitest": "^2.1.1",
|
|
32
|
-
"@stackshift-ui/
|
|
33
|
-
"@stackshift-ui/
|
|
32
|
+
"@stackshift-ui/eslint-config": "6.0.10",
|
|
33
|
+
"@stackshift-ui/typescript-config": "6.0.10"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"classnames": "^2.5.1",
|
package/src/navigation_h.tsx
CHANGED
|
@@ -666,14 +666,9 @@ function MegaDropdownGroupedLinks({ groupedLinks }: { groupedLinks: LabeledRoute
|
|
|
666
666
|
key={`MegaDropdownContent-Item-Link-${link._key}-${i}`}
|
|
667
667
|
direction="col"
|
|
668
668
|
className="h-fit w-fit">
|
|
669
|
-
<
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
link={link?.primaryButton ?? {}}
|
|
673
|
-
variant="unstyled"
|
|
674
|
-
className="text-black text-sm font-normal font-heading-kb leading-[30px] underline uppercase underline-offset-2">
|
|
675
|
-
{link?.title}
|
|
676
|
-
</Button>
|
|
669
|
+
<Text fontSize="base" className="text-black font-medium leading-[30px]">
|
|
670
|
+
{link.title}
|
|
671
|
+
</Text>
|
|
677
672
|
<Flex
|
|
678
673
|
direction="col"
|
|
679
674
|
align="start"
|