hds-web 1.40.6 → 1.40.8
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
CHANGED
@@ -26,7 +26,7 @@ export default function FlyoutA(props) {
|
|
26
26
|
key={item.name}
|
27
27
|
className="relative pb-2 flex rounded-lg items-center"
|
28
28
|
>
|
29
|
-
<a href={item.href} className="w-full">
|
29
|
+
<a href={item.href} className="w-full" aria-label={item.name}>
|
30
30
|
<div className="flex group/icon pl-2 py-2 pr-3 hover:pl-[9px] hover:bg-neutral-100 rounded-lg flex-row w-full justify-between tb:min-w-[140px] items-center">
|
31
31
|
<div className="flex gap-2 flex-row items-center">
|
32
32
|
<div className="flex rounded-lg items-center group-hover:bg-white">
|
@@ -944,6 +944,11 @@ V3Header.defaultProps = {
|
|
944
944
|
label: "RESOURCES",
|
945
945
|
},
|
946
946
|
],
|
947
|
+
flyoutD: {
|
948
|
+
link: "https://promptql.hasura.io/",
|
949
|
+
cardImg: `https://res.cloudinary.com/dh8fp23nd/image/upload/v1736783413/pq_header_1_gysb4b.png`,
|
950
|
+
cardImgAlt: "PromptQL",
|
951
|
+
},
|
947
952
|
},
|
948
953
|
],
|
949
954
|
headerUrl: "/",
|