Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@reactive-dot/core": "^0.67.3",
"@reactive-dot/react": "^0.67.3",
"@reactive-dot/core": "^0.68.1",
"@reactive-dot/react": "^0.68.0",
"@tanstack/react-table": "^8.21.3",
"buffer": "^6.0.3",
"class-variance-authority": "^0.7.1",
Expand Down
60 changes: 30 additions & 30 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@

@layer base {
:root {
--dc-primary-color: #000;
--dc-on-primary-color: #f5f5f5;
--dc-primary-color: light-dark(#000, #f5f5f5);
--dc-on-primary-color: light-dark(#f5f5f5, #000);
--dc-surface-color: light-dark(#ffffff, #1e1e1e);
--dc-on-surface-color: light-dark(#000000, #ffffff);
--dc-info-color: light-dark(#007aff, #0a84ff);
Expand Down Expand Up @@ -168,6 +168,7 @@
--chart-3: 30 80% 55%;
--chart-4: 280 65% 60%;
--chart-5: 340 75% 55%;
color-scheme: dark;
}
}

Expand Down
10 changes: 7 additions & 3 deletions src/reactiveConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@ const config = defineConfig({
wallets: [new InjectedWalletProvider()],
})

declare module '@reactive-dot/core' {
export interface Register {
config: typeof config
}
}

registerDotConnect(config)

// TypeScript cannot emit the light client provider's private symbol, so we only
// expose the runtime value without the inferred type information.
export const reactiveConfig = config as never
export const reactiveConfig = config
Loading