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
229 changes: 115 additions & 114 deletions flow/go.mod

Large diffs are not rendered by default.

466 changes: 234 additions & 232 deletions flow/go.sum

Large diffs are not rendered by default.

446 changes: 224 additions & 222 deletions nexus/Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ui/app/mirrors/create/cdc/styles.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CSSProperties } from 'styled-components';
import { CSSProperties } from 'react';

export const expandableStyle = {
fontSize: 14,
Expand Down
2 changes: 1 addition & 1 deletion ui/app/mirrors/create/styles.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CSSProperties } from 'styled-components';
import { CSSProperties } from 'react';
const MirrorButtonStyle: CSSProperties = {
width: '10em',
height: '3em',
Expand Down
2 changes: 1 addition & 1 deletion ui/app/peers/[peerName]/style.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CSSProperties } from 'styled-components';
import { CSSProperties } from 'react';

export const tableStyle: CSSProperties = {
maxHeight: '35vh',
Expand Down
4 changes: 2 additions & 2 deletions ui/components/MirrorActionsDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import ResyncDialog from '@/components/ResyncDialog';
import { FlowStatus } from '@/grpc_generated/flow';
import { Button } from '@/lib/Button';
import { Icon } from '@/lib/Icon';
import { useEffect, useState } from 'react';
import { CSSProperties, useTheme as useStyledTheme } from 'styled-components';
import { CSSProperties, useEffect, useState } from 'react';
import { useTheme as useStyledTheme } from 'styled-components';
import PauseOrResumeButton from './PauseOrResumeButton';

type MirrorActionsProps = {
Expand Down
758 changes: 338 additions & 420 deletions ui/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-toggle-group": "^1.1.7",
"@radix-ui/react-tooltip": "^1.2.4",
"@types/node": "^24.0.3",
"@types/node": "^25.0.3",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"chart.js": "^4.5.1",
Expand Down
Loading