@m5kdev/frontend 0.1.5 → 0.3.0
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/src/modules/auth/auth.lib.d.ts +1335 -1334
- package/dist/src/modules/auth/auth.lib.d.ts.map +1 -0
- package/dist/src/modules/auth/components/AuthProvider.d.ts +1 -0
- package/dist/src/modules/auth/components/AuthProvider.d.ts.map +1 -0
- package/dist/src/modules/auth/hooks/useAuth.d.ts +1 -0
- package/dist/src/modules/auth/hooks/useAuth.d.ts.map +1 -0
- package/dist/src/modules/auth/hooks/useAuthAdmin.d.ts +1 -0
- package/dist/src/modules/auth/hooks/useAuthAdmin.d.ts.map +1 -0
- package/dist/src/modules/auth/hooks/useSession.d.ts +3 -2
- package/dist/src/modules/auth/hooks/useSession.d.ts.map +1 -0
- package/dist/src/modules/billing/components/BillingProvider.d.ts +2 -1
- package/dist/src/modules/billing/components/BillingProvider.d.ts.map +1 -0
- package/dist/src/modules/billing/hooks/useSubscription.d.ts +1 -0
- package/dist/src/modules/billing/hooks/useSubscription.d.ts.map +1 -0
- package/dist/src/modules/file/hooks/useS3DownloadUrl.d.ts +1 -0
- package/dist/src/modules/file/hooks/useS3DownloadUrl.d.ts.map +1 -0
- package/dist/src/modules/file/hooks/useS3Upload.d.ts +1 -0
- package/dist/src/modules/file/hooks/useS3Upload.d.ts.map +1 -0
- package/dist/src/modules/file/hooks/useUpload.d.ts +1 -0
- package/dist/src/modules/file/hooks/useUpload.d.ts.map +1 -0
- package/dist/src/modules/table/hooks/useDateRangeFilter.d.ts +1 -0
- package/dist/src/modules/table/hooks/useDateRangeFilter.d.ts.map +1 -0
- package/dist/src/modules/table/hooks/useNuqsQueryParams.d.ts +1 -0
- package/dist/src/modules/table/hooks/useNuqsQueryParams.d.ts.map +1 -0
- package/dist/src/modules/table/hooks/useNuqsTable.d.ts +1 -0
- package/dist/src/modules/table/hooks/useNuqsTable.d.ts.map +1 -0
- package/dist/src/modules/table/hooks/useQueryWithParams.d.ts +1 -0
- package/dist/src/modules/table/hooks/useQueryWithParams.d.ts.map +1 -0
- package/dist/src/types.d.ts +1 -0
- package/dist/src/types.d.ts.map +1 -0
- package/dist/src/utils/date.d.ts +1 -0
- package/dist/src/utils/date.d.ts.map +1 -0
- package/dist/src/utils/query.d.ts +1 -0
- package/dist/src/utils/query.d.ts.map +1 -0
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +4 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m5kdev/frontend",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"license": "GPL-3.0-only",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"react": "19.2.1",
|
|
25
25
|
"react-dom": "19.2.1",
|
|
26
26
|
"zod": "4.2.1",
|
|
27
|
-
"@m5kdev/commons": "0.
|
|
27
|
+
"@m5kdev/commons": "0.3.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@heroui/react": "2.8.8",
|
|
@@ -35,11 +35,8 @@
|
|
|
35
35
|
"globals": "16.3.0",
|
|
36
36
|
"typescript": "5.9.2",
|
|
37
37
|
"vite": "7.0.4",
|
|
38
|
-
"@m5kdev/config": "0.
|
|
39
|
-
"@m5kdev/backend": "0.
|
|
40
|
-
},
|
|
41
|
-
"imports": {
|
|
42
|
-
"#types": "./src/types.ts"
|
|
38
|
+
"@m5kdev/config": "0.3.0",
|
|
39
|
+
"@m5kdev/backend": "0.3.0"
|
|
43
40
|
},
|
|
44
41
|
"exports": {
|
|
45
42
|
"./modules/auth/components/*": {
|