hds-web 1.15.9 → 1.16.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/.env +2 -1
- package/dist/index.css +3 -3
- package/dist/index.es.css +3 -3
- package/dist/index.es.js +5 -5
- package/dist/index.js +5 -5
- package/package.json +1 -5
- package/src/HDS/components/Headers/v3Header.js +0 -2
- package/src/HDS/helpers/index.js +0 -1
- package/src/styles/tailwind.css +107 -669
- package/src/HDS/helpers/AlgoliaSearch/constants.js +0 -48
- package/src/HDS/helpers/AlgoliaSearch/index.js +0 -1
- package/src/HDS/helpers/AlgoliaSearch/search.js +0 -38
- package/src/HDS/helpers/AlgoliaSearch/search.scss +0 -38
- package/src/HDS/helpers/AlgoliaSearch/searchbox.js +0 -88
- package/src/HDS/helpers/AlgoliaSearch/searchfooter.js +0 -30
- package/src/HDS/helpers/AlgoliaSearch/searchoverlay.js +0 -36
- package/src/HDS/helpers/AlgoliaSearch/searchresults.js +0 -98
- package/src/HDS/helpers/AlgoliaSearch/searchwrapper.js +0 -126
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "hds-web",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.16.1",
|
4
4
|
"private": false,
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"module": "dist/index.es.js",
|
@@ -11,11 +11,8 @@
|
|
11
11
|
"@testing-library/jest-dom": "^5.16.5",
|
12
12
|
"@testing-library/react": "^13.4.0",
|
13
13
|
"@testing-library/user-event": "^13.5.0",
|
14
|
-
"algoliasearch": "^4.18.0",
|
15
|
-
"dotenv": "^16.3.1",
|
16
14
|
"framer-motion": "^10.12.16",
|
17
15
|
"path-browserify": "^1.0.1",
|
18
|
-
"prismjs": "^1.29.0",
|
19
16
|
"prop-types": "^15.8.1",
|
20
17
|
"react": "^17.0.1",
|
21
18
|
"react-dom": "^17.0.1",
|
@@ -23,7 +20,6 @@
|
|
23
20
|
"react-instantsearch-dom": "^6.40.1",
|
24
21
|
"react-markdown": "^8.0.7",
|
25
22
|
"react-scripts": "5.0.1",
|
26
|
-
"uuid": "^9.0.0",
|
27
23
|
"web-vitals": "^2.1.4",
|
28
24
|
"yarn": "^1.22.19"
|
29
25
|
},
|
@@ -8,7 +8,6 @@ import { V3Dropdown } from '../Cards/Dropdown'
|
|
8
8
|
import { HDSColor } from '../../foundation/ColorPalette';
|
9
9
|
import { motion } from "framer-motion"
|
10
10
|
import { AnimatePresence } from 'framer-motion';
|
11
|
-
import { AlgoliaSearch } from '../../helpers/AlgoliaSearch';
|
12
11
|
|
13
12
|
const solutions = [
|
14
13
|
{
|
@@ -966,7 +965,6 @@ export default function V3Header(props) {
|
|
966
965
|
|
967
966
|
<div className='hidden tb-l:flex flex-row items-center gap-x-4 '>
|
968
967
|
|
969
|
-
<AlgoliaSearch />
|
970
968
|
|
971
969
|
<a href='' className='hidden tb:flex'>
|
972
970
|
<Typography textStyle='body3c-medium' className='text-neutral-800'>
|
package/src/HDS/helpers/index.js
CHANGED