mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
Updated Next, Prisma, react-zen.
This commit is contained in:
parent
8d5e8b072d
commit
dfaebcd1b7
4 changed files with 286 additions and 279 deletions
20
package.json
20
package.json
|
|
@ -76,13 +76,13 @@
|
|||
"@dicebear/core": "^9.2.3",
|
||||
"@fontsource/inter": "^4.5.15",
|
||||
"@hello-pangea/dnd": "^17.0.0",
|
||||
"@prisma/adapter-pg": "^6.14.0",
|
||||
"@prisma/client": "^6.14.0",
|
||||
"@prisma/adapter-pg": "^6.15.0",
|
||||
"@prisma/client": "^6.15.0",
|
||||
"@prisma/extension-read-replicas": "^0.4.1",
|
||||
"@react-spring/web": "^9.7.3",
|
||||
"@svgr/cli": "^8.1.0",
|
||||
"@tanstack/react-query": "^5.85.5",
|
||||
"@umami/react-zen": "^0.168.0",
|
||||
"@umami/react-zen": "^0.169.0",
|
||||
"@umami/redis-client": "^0.27.0",
|
||||
"bcryptjs": "^3.0.2",
|
||||
"chalk": "^5.6.0",
|
||||
|
|
@ -112,12 +112,12 @@
|
|||
"lucide-react": "^0.540.0",
|
||||
"maxmind": "^4.3.28",
|
||||
"md5": "^2.3.0",
|
||||
"next": "15.5.0",
|
||||
"next": "15.5.2",
|
||||
"node-fetch": "^3.2.8",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"papaparse": "^5.5.3",
|
||||
"pg": "^8.16.3",
|
||||
"prisma": "6.14.0",
|
||||
"prisma": "6.15.0",
|
||||
"pure-rand": "^7.0.1",
|
||||
"react": "^19.1.1",
|
||||
"react-dom": "^19.1.1",
|
||||
|
|
@ -144,12 +144,12 @@
|
|||
"@rollup/plugin-replace": "^5.0.2",
|
||||
"@rollup/plugin-terser": "^0.4.4",
|
||||
"@types/jest": "^29.5.14",
|
||||
"@types/node": "^22.16.5",
|
||||
"@types/react": "^19.1.11",
|
||||
"@types/react-dom": "^19.1.7",
|
||||
"@types/node": "^22.18.0",
|
||||
"@types/react": "^19.1.12",
|
||||
"@types/react-dom": "^19.1.8",
|
||||
"@types/react-window": "^1.8.8",
|
||||
"@typescript-eslint/eslint-plugin": "^8.40.0",
|
||||
"@typescript-eslint/parser": "^8.40.0",
|
||||
"@typescript-eslint/eslint-plugin": "^8.41.0",
|
||||
"@typescript-eslint/parser": "^8.41.0",
|
||||
"babel-plugin-react-compiler": "19.1.0-rc.2",
|
||||
"cross-env": "^7.0.3",
|
||||
"cypress": "^13.6.6",
|
||||
|
|
|
|||
539
pnpm-lock.yaml
generated
539
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
|
@ -3,6 +3,7 @@ import { Edit } from '@/components/icons';
|
|||
import { Dialog } from '@umami/react-zen';
|
||||
import { CohortEditForm } from '@/app/(main)/websites/[websiteId]/cohorts/CohortEditForm';
|
||||
import { useMessages } from '@/components/hooks';
|
||||
import { Filter } from '@/lib/types';
|
||||
|
||||
export function CohortEditButton({
|
||||
cohortId,
|
||||
|
|
@ -11,7 +12,7 @@ export function CohortEditButton({
|
|||
}: {
|
||||
cohortId: string;
|
||||
websiteId: string;
|
||||
filters: any[];
|
||||
filters: Filter[];
|
||||
}) {
|
||||
const { formatMessage, labels } = useMessages();
|
||||
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ import { Edit } from '@/components/icons';
|
|||
import { Dialog } from '@umami/react-zen';
|
||||
import { SegmentEditForm } from '@/app/(main)/websites/[websiteId]/segments/SegmentEditForm';
|
||||
import { useMessages } from '@/components/hooks';
|
||||
import { Filter } from '@/lib/types';
|
||||
|
||||
export function SegmentEditButton({
|
||||
segmentId,
|
||||
|
|
@ -11,7 +12,7 @@ export function SegmentEditButton({
|
|||
}: {
|
||||
segmentId: string;
|
||||
websiteId: string;
|
||||
filters?: any[];
|
||||
filters?: Filter[];
|
||||
}) {
|
||||
const { formatMessage, labels } = useMessages();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue