@hed-hog/contact-us 0.0.301 → 0.0.303
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/hedhog/frontend/app/page.tsx.ejs +13 -15
- package/package.json +3 -3
|
@@ -301,21 +301,19 @@ export default function ContactUsPage() {
|
|
|
301
301
|
|
|
302
302
|
<StatsCards stats={statsCards} />
|
|
303
303
|
|
|
304
|
-
<
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
/>
|
|
318
|
-
</div>
|
|
304
|
+
<SearchBar
|
|
305
|
+
searchQuery={searchTerm}
|
|
306
|
+
onSearchChange={(value) => {
|
|
307
|
+
setSearchTerm(value);
|
|
308
|
+
setPage(1);
|
|
309
|
+
}}
|
|
310
|
+
onSearch={() => {
|
|
311
|
+
setPage(1);
|
|
312
|
+
refetchList();
|
|
313
|
+
}}
|
|
314
|
+
placeholder={t('searchPlaceholder')}
|
|
315
|
+
controls={searchControls}
|
|
316
|
+
/>
|
|
319
317
|
|
|
320
318
|
<div className="space-y-4">
|
|
321
319
|
{contactList.data.length > 0 ? (
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hed-hog/contact-us",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.303",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"dependencies": {
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
"@nestjs/core": "^11",
|
|
10
10
|
"@nestjs/jwt": "^11",
|
|
11
11
|
"@nestjs/mapped-types": "*",
|
|
12
|
-
"@hed-hog/api": "0.0.6",
|
|
13
12
|
"@hed-hog/api-locale": "0.0.14",
|
|
13
|
+
"@hed-hog/api": "0.0.6",
|
|
14
14
|
"@hed-hog/api-prisma": "0.0.6",
|
|
15
|
-
"@hed-hog/core": "0.0.
|
|
15
|
+
"@hed-hog/core": "0.0.303",
|
|
16
16
|
"@hed-hog/api-pagination": "0.0.7"
|
|
17
17
|
},
|
|
18
18
|
"exports": {
|