hds-web 1.21.0 → 1.21.1
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
@@ -6,7 +6,7 @@ import { V3Dropdown } from '../Cards/Dropdown'
|
|
6
6
|
import { HDSColor } from '../../foundation/ColorPalette';
|
7
7
|
import { motion } from "framer-motion"
|
8
8
|
import { AnimatePresence } from 'framer-motion';
|
9
|
-
|
9
|
+
import { AlgoliaSearch } from '../../helpers/AlgoliaSearch';
|
10
10
|
|
11
11
|
function classNames(...classes) {
|
12
12
|
return classes.filter(Boolean).join(' ')
|
@@ -279,7 +279,7 @@ export default function V3Header(props) {
|
|
279
279
|
</div>
|
280
280
|
<div className='hds-hidden-tbl flex z-[10] items-center gap-6'>
|
281
281
|
<div className={'h-full ' + ((mobileNavOpen) ? " hds-hidden" : "")}>
|
282
|
-
|
282
|
+
<AlgoliaSearch {...props} />
|
283
283
|
</div>
|
284
284
|
{!(isCompany || isDeveloper || isProduct) &&
|
285
285
|
(
|
@@ -309,7 +309,7 @@ export default function V3Header(props) {
|
|
309
309
|
|
310
310
|
<div className='hds-hidden tb-l:flex flex-row items-center gap-x-4 '>
|
311
311
|
|
312
|
-
|
312
|
+
<AlgoliaSearch {...props} />
|
313
313
|
|
314
314
|
<a href='/contact-us?type=hasuraenterprise' className='hds-hidden db:flex'>
|
315
315
|
<Typography textStyle='body3c-medium' className='text-neutral-800 hover:text-blue-600'>
|