Skip to content

Commit

Permalink
Update @jarvis/api-ui to @jarvis/api/ui
Browse files Browse the repository at this point in the history
  • Loading branch information
HuakunShen committed May 23, 2024
1 parent 449b100 commit 65e4fd9
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 10 deletions.
1 change: 0 additions & 1 deletion extensions/download-twitter-video/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"dependencies": {
"@hookform/resolvers": "^3.4.0",
"@jarvis/api": "*",
"@jarvis/api-ui": "workspace:*",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useToast } from "@/components/ui/use-toast";
import { ToastAction } from "@/components/ui/toast";
import { clipboard, updownload, path, open } from "@jarvis/api-ui";
import { clipboard, updownload, path, open } from "@jarvis/api/ui";
import Axios from "axios";
import { z } from "zod";
import { Label } from "@/components/ui/label";
Expand Down
2 changes: 1 addition & 1 deletion extensions/jwt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"vite": "^5.2.0"
},
"dependencies": {
"@jarvis/api-ui": "workspace:*",
"@jarvis/api": "workspace:*",
"bits-ui": "^0.21.7",
"clsx": "^2.1.1",
"cmdk-sv": "^0.0.17",
Expand Down
2 changes: 1 addition & 1 deletion extensions/jwt/src/App.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import { Button } from "$lib/components/ui/button";
import { clipboard } from "@jarvis/api-ui";
import { clipboard } from "@jarvis/api/ui";
import { onMount } from "svelte";
import * as jose from "jose";
import * as Resizable from "$lib/components/ui/resizable/index.js";
Expand Down
2 changes: 1 addition & 1 deletion extensions/jwt/src/Search.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import * as Command from "$lib/components/ui/command/index.js";
import { JwtToken, jwtIsValid, splitJwt, claimsDef } from "$lib/jwt";
import { onMount } from "svelte";
import { clipboard } from "@jarvis/api-ui";
import { clipboard } from "@jarvis/api/ui";
import { toast } from "svelte-sonner";
import dayjs from "dayjs";
import timezone from "dayjs/plugin/timezone";
Expand Down
2 changes: 1 addition & 1 deletion extensions/myip/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tailwindcss-animate": "^1.0.7",
"vue": "^3.4.21",
"zod": "^3.23.7",
"@jarvis/api-ui": "workspace:*"
"@jarvis/api": "workspace:*"
},
"jarvis": {
"ui": "index.html",
Expand Down
2 changes: 1 addition & 1 deletion extensions/myip/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { onMounted, ref } from "vue";
import axios from "axios";
import { z } from "zod";
import { clipboard } from "@jarvis/api-ui";
import { clipboard } from "@jarvis/api/ui";
import { useColorMode } from "@vueuse/core";
import { Icon } from "@iconify/vue";
import {
Expand Down
1 change: 0 additions & 1 deletion extensions/qrcode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"devDependencies": {
"@jarvis/api-ui": "workspace:*",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@tsconfig/svelte": "^5.0.2",
"autoprefixer": "^10.4.16",
Expand Down
2 changes: 1 addition & 1 deletion extensions/qrcode/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import QR from "$lib/components/QR.svelte";
import QRCode from "easyqrcodejs";
import { onMount } from "svelte";
import { clipboard, fs, dialog } from "@jarvis/api-ui";
import { clipboard, fs, dialog } from "@jarvis/api/ui";
import * as v from "valibot";
import { ClipboardCopyIcon, DownloadIcon, RefreshCcwIcon, SearchIcon } from "lucide-svelte/icons";
import { ModeWatcher } from "mode-watcher";
Expand Down
2 changes: 1 addition & 1 deletion extensions/qrcode/src/DetectQRCode.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import jsQR from "jsqr";
import { clipboard } from "@jarvis/api-ui";
import { clipboard } from "@jarvis/api/ui";
import { Button } from "$lib/components/ui/button";
import { ModeWatcher } from "mode-watcher";
import { onMount } from "svelte";
Expand Down

0 comments on commit 65e4fd9

Please sign in to comment.