This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { useMemo, useState } from 'react' | |
| import { Box, Typography } from '@mui/material' | |
| import { createFileRoute } from '@tanstack/react-router' | |
| import { ActionRequiredDialog } from '@components/dashboard/action-required-dialog' | |
| import { OffersContent } from '@components/offers/offers-content' | |
| import { OfferTabs } from '@components/offers/offer-tabs' | |
| import type { | |
| AllocationActionItem, | |
| TransferActionItem, | |
| } from '@components/types' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright (c) 2025-2026 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved. | |
| // SPDX-License-Identifier: Apache-2.0 | |
| import { useMemo, useState } from 'react' | |
| import { | |
| Alert, | |
| Box, | |
| Button, | |
| Card, | |
| CardContent, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright (c) 2025-2026 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved. | |
| // SPDX-License-Identifier: Apache-2.0 | |
| import { useCallback, useEffect, useMemo, useState } from 'react' | |
| import CloseIcon from '@mui/icons-material/Close' | |
| import { | |
| Alert, | |
| Box, | |
| CircularProgress, | |
| IconButton, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { useMemo, type ReactNode } from 'react' | |
| import AccountBalanceWalletIcon from '@mui/icons-material/AccountBalanceWallet' | |
| import DashboardIcon from '@mui/icons-material/Dashboard' | |
| import NotificationsNoneIcon from '@mui/icons-material/NotificationsNone' | |
| import { | |
| Box, | |
| Divider, | |
| Drawer, | |
| Typography, | |
| type SxProps, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright (c) 2025-2026 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved. | |
| // SPDX-License-Identifier: Apache-2.0 | |
| import { createTheme, type ThemeOptions } from '@mui/material/styles' | |
| export const portfolioColors = { | |
| black: '#000000', | |
| grey27: '#1B1B1B', | |
| grey36: '#272727', | |
| grey54: '#363636', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * oh-pi Auto Session Name Extension | |
| * | |
| * Automatically names sessions based on the first user message. | |
| */ | |
| import type { ExtensionAPI } from "@mariozechner/pi-coding-agent"; | |
| export default function (pi: ExtensionAPI) { | |
| let named = false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright (c) 2025-2026 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved. | |
| // SPDX-License-Identifier: Apache-2.0 | |
| import { css } from 'lit' | |
| import { BaseElement } from '../internal/base-element' | |
| import { cssToString } from '../utils' | |
| import { WalletPickerEntry } from '@canton-network/core-types' | |
| export type { | |
| WalletPickerEntry, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { createFileRoute, Link } from "@tanstack/react-router"; | |
| import { | |
| BookOpen, | |
| FileText, | |
| Gavel, | |
| Globe, | |
| GraduationCap, | |
| Landmark, | |
| MessageSquare, | |
| Scale, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local overrides = require "configs.overrides" | |
| ---@type NvPluginSpec[] | |
| local plugins = { | |
| -- Override plugin definition options | |
| -- { | |
| -- dir = "~/Code/opencode-nvim", | |
| -- -- or absolute path: dir = "/home/fayi/Code/opencode-nvim", | |
| -- config = function() |
NewerOlder