hds-web 1.20.3 → 1.20.4
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/index.css +1 -1
- package/dist/index.es.css +1 -1
- package/dist/index.es.js +1 -1
- package/dist/index.js +3 -3
- package/package.json +1 -1
- package/src/HDS/components/Headers/v3Header.js +3 -3
- package/src/styles/tailwind.css +32 -0
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(' ')
|
@@ -278,7 +278,7 @@ export default function V3Header(props) {
|
|
278
278
|
</div>
|
279
279
|
<div className='hds-hidden-tbl flex z-[10] items-center gap-6'>
|
280
280
|
<div className={'h-full ' + ((mobileNavOpen) ? " hds-hidden" : "")}>
|
281
|
-
|
281
|
+
<AlgoliaSearch {...props} />
|
282
282
|
</div>
|
283
283
|
{!(isCompany || isDeveloper || isProduct) &&
|
284
284
|
(
|
@@ -308,7 +308,7 @@ export default function V3Header(props) {
|
|
308
308
|
|
309
309
|
<div className='hds-hidden tb-l:flex flex-row items-center gap-x-4 '>
|
310
310
|
|
311
|
-
|
311
|
+
<AlgoliaSearch {...props} />
|
312
312
|
|
313
313
|
<a href='/contact-us?type=hasuraenterprise' className='hds-hidden db:flex'>
|
314
314
|
<Typography textStyle='body3c-medium' className='text-neutral-800 hover:text-blue-600'>
|
package/src/styles/tailwind.css
CHANGED
@@ -8675,6 +8675,37 @@ select{
|
|
8675
8675
|
}
|
8676
8676
|
}
|
8677
8677
|
|
8678
|
+
.carousel-wrapper {
|
8679
|
+
display: grid;
|
8680
|
+
place-content: center;
|
8681
|
+
border-radius: 2rem;
|
8682
|
+
}
|
8683
|
+
|
8684
|
+
.carousel-content {
|
8685
|
+
position: relative;
|
8686
|
+
width: 10rem;
|
8687
|
+
height: 10rem;
|
8688
|
+
}
|
8689
|
+
|
8690
|
+
.carousel-item {
|
8691
|
+
position: absolute;
|
8692
|
+
width: 10rem;
|
8693
|
+
height: 10rem;
|
8694
|
+
background-position: center;
|
8695
|
+
background-size: cover;
|
8696
|
+
background-repeat: no-repeat;
|
8697
|
+
border-radius: 10rem;
|
8698
|
+
}
|
8699
|
+
|
8700
|
+
.carousel-btns {
|
8701
|
+
margin-top: 2rem;
|
8702
|
+
margin-bottom: 2rem;
|
8703
|
+
display: flex;
|
8704
|
+
justify-content: center;
|
8705
|
+
gap: 1rem;
|
8706
|
+
z-index: 6;
|
8707
|
+
}
|
8708
|
+
|
8678
8709
|
.placeholder\:text-neutral-500::-webkit-input-placeholder{
|
8679
8710
|
--tw-text-opacity: 1;
|
8680
8711
|
color: rgb(108 115 127 / var(--tw-text-opacity));
|
@@ -12127,3 +12158,4 @@ select{
|
|
12127
12158
|
-webkit-padding-start: 1rem;
|
12128
12159
|
padding-inline-start: 1rem;
|
12129
12160
|
}
|
12161
|
+
|