hds-web 1.17.5 → 1.17.7

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.17.5",
3
+ "version": "1.17.7",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -142,6 +142,26 @@ export default function V3Header(props) {
142
142
  {renderDropdownContainer(headerList, 0)}
143
143
  {renderDropdownContainer(headerList, 1)}
144
144
  {renderDropdownContainer(headerList, 3)}
145
+ {<a href='https://hasura.io/case-studies/'>
146
+
147
+ <Typography
148
+ className="hover:text-blue-600 cursor-pointer"
149
+ textStyle="body3c-medium"
150
+ >
151
+ {`Customers `}
152
+ </Typography>
153
+ </a>
154
+ }
155
+ {<a href='https://hasura.io/pricing'>
156
+
157
+ <Typography
158
+ className="hover:text-blue-600 cursor-pointer"
159
+ textStyle="body3c-medium"
160
+ >
161
+ {`Pricing `}
162
+ </Typography>
163
+ </a>
164
+ }
145
165
  </>
146
166
  );
147
167
 
@@ -22,7 +22,7 @@ export default function PricingTableB(props) {
22
22
  const tableHeader = stickyRef.current;
23
23
  const tableHeaderRect = tableHeader.getBoundingClientRect();
24
24
  const isSticky = tableHeaderRect.top <= 400; // Adjust this value if needed
25
- console.log(isSticky, 'sadasd')
25
+
26
26
  setIsSticky(true);
27
27
  };
28
28
 
@@ -32,7 +32,7 @@ export default function PricingTableB(props) {
32
32
  };
33
33
  }, []);
34
34
 
35
- console.log(TABLE_VALUE)
35
+
36
36
 
37
37
 
38
38
  const tableValuesm = (section, keyIndex) => {
@@ -99,7 +99,7 @@ export default function SearchWrapper({ indices, ...props }) {
99
99
  },
100
100
  };
101
101
 
102
- console.log(props);
102
+
103
103
  const defaultIndexTypesState = Object.values(INDEX_TYPES).reduce((a, c) => {
104
104
  a[c] = true;
105
105
  return a;