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/dist/index.css +4 -4
- package/dist/index.es.css +4 -4
- package/dist/index.es.js +5 -5
- package/dist/index.js +5 -5
- package/package.json +1 -1
- package/src/HDS/components/Headers/v3Header.js +20 -0
- package/src/HDS/components/Tables/tableD.js +2 -2
- package/src/HDS/helpers/AlgoliaSearch/searchwrapper.js +1 -1
- package/src/styles/tailwind.css +602 -201
package/package.json
CHANGED
@@ -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
|
-
|
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
|
-
|
35
|
+
|
36
36
|
|
37
37
|
|
38
38
|
const tableValuesm = (section, keyIndex) => {
|