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>
50 lines
2.5 KiB
TypeScript
50 lines
2.5 KiB
TypeScript
import { type ElementType, type Ref } from 'react';
|
|
import { _internal_ComponentDescription } from '../../components/description/description.js';
|
|
import { _internal_ComponentLabel } from '../../components/label/label.js';
|
|
import type { Props } from '../../types.js';
|
|
import { type HasDisplayName, type RefProp } from '../../utils/render.js';
|
|
declare let DEFAULT_RADIO_GROUP_TAG: "div";
|
|
interface RadioGroupRenderPropArg<TType> {
|
|
value: TType;
|
|
}
|
|
type RadioGroupPropsWeControl = 'role' | 'aria-labelledby' | 'aria-describedby';
|
|
export type RadioGroupProps<TTag extends ElementType, TType> = Props<TTag, RadioGroupRenderPropArg<TType>, RadioGroupPropsWeControl, {
|
|
value?: TType;
|
|
defaultValue?: TType;
|
|
onChange?(value: TType): void;
|
|
by?: (keyof TType & string) | ((a: TType, z: TType) => boolean);
|
|
disabled?: boolean;
|
|
form?: string;
|
|
name?: string;
|
|
}>;
|
|
declare function RadioGroupFn<TTag extends ElementType = typeof DEFAULT_RADIO_GROUP_TAG, TType = string>(props: RadioGroupProps<TTag, TType>, ref: Ref<HTMLElement>): JSX.Element;
|
|
declare let DEFAULT_OPTION_TAG: "div";
|
|
interface OptionRenderPropArg {
|
|
checked: boolean;
|
|
active: boolean;
|
|
disabled: boolean;
|
|
}
|
|
type OptionPropsWeControl = 'aria-checked' | 'aria-describedby' | 'aria-lablledby' | 'role' | 'tabIndex';
|
|
export type RadioOptionProps<TTag extends ElementType, TType> = Props<TTag, OptionRenderPropArg, OptionPropsWeControl, {
|
|
value: TType;
|
|
disabled?: boolean;
|
|
}>;
|
|
declare function OptionFn<TTag extends ElementType = typeof DEFAULT_OPTION_TAG, TType = Parameters<typeof RadioGroupRoot>[0]['value']>(props: RadioOptionProps<TTag, TType>, ref: Ref<HTMLElement>): JSX.Element;
|
|
export interface _internal_ComponentRadioGroup extends HasDisplayName {
|
|
<TTag extends ElementType = typeof DEFAULT_RADIO_GROUP_TAG, TType = string>(props: RadioGroupProps<TTag, TType> & RefProp<typeof RadioGroupFn>): JSX.Element;
|
|
}
|
|
export interface _internal_ComponentRadioOption extends HasDisplayName {
|
|
<TTag extends ElementType = typeof DEFAULT_OPTION_TAG, TType = string>(props: RadioOptionProps<TTag, TType> & RefProp<typeof OptionFn>): JSX.Element;
|
|
}
|
|
export interface _internal_ComponentRadioLabel extends _internal_ComponentLabel {
|
|
}
|
|
export interface _internal_ComponentRadioDescription extends _internal_ComponentDescription {
|
|
}
|
|
declare let RadioGroupRoot: _internal_ComponentRadioGroup;
|
|
export declare let RadioGroup: _internal_ComponentRadioGroup & {
|
|
Option: _internal_ComponentRadioOption;
|
|
Label: _internal_ComponentRadioLabel;
|
|
Description: _internal_ComponentRadioDescription;
|
|
};
|
|
export {};
|