Update package names

This commit is contained in:
Darren Clarke 2024-06-05 08:52:41 +02:00
parent 89d229eba9
commit 85a0fc11e5
106 changed files with 1908 additions and 2686 deletions

View file

@ -4,7 +4,13 @@ import { FC, useEffect, useState } from "react";
import { useFormState } from "react-dom";
import { Grid } from "@mui/material";
import { useRouter } from "next/navigation";
import { Button, Dialog, TextField, Select, MultiValueField } from "ui";
import {
Button,
Dialog,
TextField,
Select,
MultiValueField,
} from "@link-stack/ui";
import { generateCreateAction } from "../lib/actions";
import { FieldDescription } from "../lib/service";
import { serviceConfig } from "../config/config";

View file

@ -3,9 +3,15 @@
import { FC, useState } from "react";
import { Grid, Box } from "@mui/material";
import { useRouter } from "next/navigation";
import { DisplayTextField, Button, Dialog, colors, typography } from "ui";
import {
DisplayTextField,
Button,
Dialog,
colors,
typography,
} from "@link-stack/ui";
import { Selectable } from "kysely";
import { type Database } from "bridge-common";
import { type Database } from "@link-stack/bridge-common";
import { QRCode } from "./QRCode";
import { generateDeleteAction } from "../lib/actions";
import { serviceConfig } from "../config/config";

View file

@ -4,9 +4,15 @@ import { FC, useEffect, useState } from "react";
import { useFormState } from "react-dom";
import { Grid } from "@mui/material";
import { useRouter } from "next/navigation";
import { TextField, Dialog, Button, Select, MultiValueField } from "ui";
import {
TextField,
Dialog,
Button,
Select,
MultiValueField,
} from "@link-stack/ui";
import { Selectable } from "kysely";
import { type Database } from "bridge-common";
import { type Database } from "@link-stack/bridge-common";
import { generateUpdateAction } from "../lib/actions";
import { serviceConfig } from "../config/config";
import { FieldDescription } from "../lib/service";

View file

@ -2,9 +2,9 @@
import { FC } from "react";
import { useRouter } from "next/navigation";
import { List as InternalList, Button } from "ui";
import { List as InternalList, Button } from "@link-stack/ui";
import { type Selectable } from "kysely";
import { type Database } from "bridge-common";
import { type Database } from "@link-stack/bridge-common";
import { serviceConfig } from "../config/config";
import { getBasePath } from "../lib/frontendUtils";