@hed-hog/tag 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 +11 -11
- package/package.json +3 -3
|
@@ -22,7 +22,6 @@ import {
|
|
|
22
22
|
import { Badge } from '@/components/ui/badge';
|
|
23
23
|
import { Button } from '@/components/ui/button';
|
|
24
24
|
import { Card, CardContent } from '@/components/ui/card';
|
|
25
|
-
import { FormActions } from '@/components/ui/form-actions';
|
|
26
25
|
import {
|
|
27
26
|
Form,
|
|
28
27
|
FormControl,
|
|
@@ -31,6 +30,7 @@ import {
|
|
|
31
30
|
FormLabel,
|
|
32
31
|
FormMessage,
|
|
33
32
|
} from '@/components/ui/form';
|
|
33
|
+
import { FormActions } from '@/components/ui/form-actions';
|
|
34
34
|
import { Input } from '@/components/ui/input';
|
|
35
35
|
import {
|
|
36
36
|
Select,
|
|
@@ -271,7 +271,7 @@ export default function TagPage() {
|
|
|
271
271
|
placeholder={t('searchPlaceholder')}
|
|
272
272
|
/>
|
|
273
273
|
|
|
274
|
-
<div>
|
|
274
|
+
<div className="space-y-4">
|
|
275
275
|
{data.length === 0 ? (
|
|
276
276
|
<EmptyState
|
|
277
277
|
icon={<TagIcon className="h-6 w-6" />}
|
|
@@ -360,16 +360,16 @@ export default function TagPage() {
|
|
|
360
360
|
))}
|
|
361
361
|
</div>
|
|
362
362
|
)}
|
|
363
|
-
</div>
|
|
364
363
|
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
364
|
+
<PaginationFooter
|
|
365
|
+
currentPage={page}
|
|
366
|
+
pageSize={pageSize}
|
|
367
|
+
totalItems={total}
|
|
368
|
+
onPageChange={setPage}
|
|
369
|
+
onPageSizeChange={setPageSize}
|
|
370
|
+
pageSizeOptions={[...PAGE_SIZE_OPTIONS]}
|
|
371
|
+
/>
|
|
372
|
+
</div>
|
|
373
373
|
|
|
374
374
|
<Sheet open={isSheetOpen} onOpenChange={setIsSheetOpen}>
|
|
375
375
|
<SheetContent className="w-full overflow-y-auto sm:max-w-lg">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hed-hog/tag",
|
|
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": {
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"@nestjs/jwt": "^11",
|
|
11
11
|
"@nestjs/mapped-types": "*",
|
|
12
12
|
"@hed-hog/api-pagination": "0.0.7",
|
|
13
|
-
"@hed-hog/core": "0.0.301",
|
|
14
|
-
"@hed-hog/api-locale": "0.0.14",
|
|
15
13
|
"@hed-hog/api": "0.0.6",
|
|
14
|
+
"@hed-hog/api-locale": "0.0.14",
|
|
15
|
+
"@hed-hog/core": "0.0.303",
|
|
16
16
|
"@hed-hog/api-prisma": "0.0.6"
|
|
17
17
|
},
|
|
18
18
|
"exports": {
|