Skip to content

Commit

Permalink
build: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tien committed Dec 9, 2024
1 parent d276da4 commit 0f099f7
Show file tree
Hide file tree
Showing 6 changed files with 215 additions and 243 deletions.
2 changes: 1 addition & 1 deletion .papi/polkadot-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@
"metadata": ".papi/metadata/invarch.scale"
}
}
}
}
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"@reactive-dot/react": "^0.27.2",
"@reactive-dot/wallet-ledger": "^0.16.20",
"@reactive-dot/wallet-walletconnect": "^0.16.20",
"@tanstack/react-router": "^1.87.0",
"@tanstack/zod-adapter": "^1.87.0",
"@tanstack/react-router": "^1.87.2",
"@tanstack/zod-adapter": "^1.87.2",
"@w3f/polkadot-icons": "^1.0.0",
"date-fns": "^4.1.0",
"dot-connect": "^0.13.2",
Expand All @@ -53,23 +53,23 @@
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.16.0",
"@pandacss/dev": "^0.48.1",
"@pandacss/dev": "^0.49.0",
"@park-ui/panda-preset": "^0.43.1",
"@rsbuild/core": "^1.1.9",
"@rsbuild/plugin-react": "^1.1.0",
"@tanstack/router-devtools": "^1.87.0",
"@tanstack/router-devtools": "^1.87.2",
"@tanstack/router-plugin": "^1.86.0",
"@trivago/prettier-plugin-sort-imports": "^5.1.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@tsconfig/recommended": "^1.0.8",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint__js": "^8.42.3",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@types/react-dom": "^19.0.2",
"eslint": "^9.16.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
"typescript-eslint": "^8.18.0"
}
}
4 changes: 2 additions & 2 deletions src/components/circular-progress-indicator.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { ReactNode } from "react";
import { css, cx } from "styled-system/css";
import { Spinner } from "./ui/spinner";
import { Text } from "./ui/text";
import type { ReactNode } from "react";
import { css, cx } from "styled-system/css";
import type { SpinnerVariant } from "styled-system/recipes";

export type CircularProgressIndicatorProps = {
Expand Down
2 changes: 1 addition & 1 deletion src/components/tooltip-box.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { PropsWithChildren, ReactNode } from "react";
import { Tooltip as BaseTooltip } from "./ui/tooltip";
import type { PropsWithChildren, ReactNode } from "react";
import { css } from "styled-system/css";

export type TooltipProps = PropsWithChildren<{
Expand Down
4 changes: 2 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { hydrationChainSpec } from "./chain-specs/hydration";
import { invarchChainSpec } from "./chain-specs/invarch";
import {
hydration,
invarch,
Expand All @@ -19,8 +21,6 @@ import { createLightClientProvider } from "@reactive-dot/core/providers/light-cl
import { InjectedWalletProvider } from "@reactive-dot/core/wallets.js";
import { LedgerWallet } from "@reactive-dot/wallet-ledger";
import { WalletConnect } from "@reactive-dot/wallet-walletconnect";
import { hydrationChainSpec } from "./chain-specs/hydration";
import { invarchChainSpec } from "./chain-specs/invarch";

const lightClientProvider = createLightClientProvider();

Expand Down
Loading

0 comments on commit 0f099f7

Please sign in to comment.