Frontend Enhancements: - Complete React TypeScript frontend with modern UI components - Distributed workflows management interface with real-time updates - Socket.IO integration for live agent status monitoring - Agent management dashboard with cluster visualization - Project management interface with metrics and task tracking - Responsive design with proper error handling and loading states Backend Infrastructure: - Distributed coordinator for multi-agent workflow orchestration - Cluster management API with comprehensive agent operations - Enhanced database models for agents and projects - Project service for filesystem-based project discovery - Performance monitoring and metrics collection - Comprehensive API documentation and error handling Documentation: - Complete distributed development guide (README_DISTRIBUTED.md) - Comprehensive development report with architecture insights - System configuration templates and deployment guides The platform now provides a complete web interface for managing the distributed AI cluster with real-time monitoring, workflow orchestration, and agent coordination capabilities. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
42 lines
2.1 KiB
TypeScript
42 lines
2.1 KiB
TypeScript
import { type ElementType, type MutableRefObject, type Ref } from 'react';
|
|
import type { Props, ReactTag } from '../../types.js';
|
|
import { Features, type HasDisplayName, type PropsForFeatures, type RefProp } from '../../utils/render.js';
|
|
export interface TransitionClasses {
|
|
enter?: string;
|
|
enterFrom?: string;
|
|
enterTo?: string;
|
|
entered?: string;
|
|
leave?: string;
|
|
leaveFrom?: string;
|
|
leaveTo?: string;
|
|
}
|
|
export interface TransitionEvents {
|
|
beforeEnter?: () => void;
|
|
afterEnter?: () => void;
|
|
beforeLeave?: () => void;
|
|
afterLeave?: () => void;
|
|
}
|
|
export type TransitionChildProps<TTag extends ReactTag> = Props<TTag, TransitionChildRenderPropArg, never, PropsForFeatures<typeof TransitionChildRenderFeatures> & TransitionClasses & TransitionEvents & {
|
|
appear?: boolean;
|
|
}>;
|
|
declare let DEFAULT_TRANSITION_CHILD_TAG: "div";
|
|
type TransitionChildRenderPropArg = MutableRefObject<HTMLDivElement>;
|
|
declare let TransitionChildRenderFeatures: Features;
|
|
declare function TransitionChildFn<TTag extends ElementType = typeof DEFAULT_TRANSITION_CHILD_TAG>(props: TransitionChildProps<TTag>, ref: Ref<HTMLElement>): JSX.Element;
|
|
export type TransitionRootProps<TTag extends ElementType> = TransitionChildProps<TTag> & {
|
|
show?: boolean;
|
|
appear?: boolean;
|
|
};
|
|
declare function TransitionRootFn<TTag extends ElementType = typeof DEFAULT_TRANSITION_CHILD_TAG>(props: TransitionRootProps<TTag>, ref: Ref<HTMLElement>): JSX.Element;
|
|
export interface _internal_ComponentTransitionRoot extends HasDisplayName {
|
|
<TTag extends ElementType = typeof DEFAULT_TRANSITION_CHILD_TAG>(props: TransitionRootProps<TTag> & RefProp<typeof TransitionRootFn>): JSX.Element;
|
|
}
|
|
export interface _internal_ComponentTransitionChild extends HasDisplayName {
|
|
<TTag extends ElementType = typeof DEFAULT_TRANSITION_CHILD_TAG>(props: TransitionChildProps<TTag> & RefProp<typeof TransitionChildFn>): JSX.Element;
|
|
}
|
|
export declare let Transition: _internal_ComponentTransitionRoot & {
|
|
Child: _internal_ComponentTransitionChild;
|
|
Root: _internal_ComponentTransitionRoot;
|
|
};
|
|
export {};
|