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>
100 lines
3.4 KiB
TypeScript
100 lines
3.4 KiB
TypeScript
import type { Control, DeepPartialSkipArrayKey, FieldPath, FieldPathValue, FieldPathValues, FieldValues } from './types';
|
|
/**
|
|
* Custom hook to subscribe to field change and isolate re-rendering at the component level.
|
|
*
|
|
* @remarks
|
|
*
|
|
* [API](https://react-hook-form.com/docs/usewatch) • [Demo](https://codesandbox.io/s/react-hook-form-v7-ts-usewatch-h9i5e)
|
|
*
|
|
* @param props - defaultValue, disable subscription and match exact name.
|
|
*
|
|
* @example
|
|
* ```tsx
|
|
* const { control } = useForm();
|
|
* const values = useWatch({
|
|
* control,
|
|
* name: "fieldA",
|
|
* defaultValue: "default value",
|
|
* exact: false,
|
|
* })
|
|
* ```
|
|
*/
|
|
export declare function useWatch<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>, TTransformedValues = TFieldValues>(props: {
|
|
name: TFieldName;
|
|
defaultValue?: FieldPathValue<TFieldValues, TFieldName>;
|
|
control?: Control<TFieldValues, any, TTransformedValues>;
|
|
disabled?: boolean;
|
|
exact?: boolean;
|
|
}): FieldPathValue<TFieldValues, TFieldName>;
|
|
/**
|
|
* Subscribe to the entire form values change and re-render at the hook level.
|
|
*
|
|
* @remarks
|
|
*
|
|
* [API](https://react-hook-form.com/docs/usewatch) • [Demo](https://codesandbox.io/s/react-hook-form-v7-ts-usewatch-h9i5e)
|
|
*
|
|
* @param props - defaultValue, disable subscription and match exact name.
|
|
*
|
|
* @example
|
|
* ```tsx
|
|
* const { control } = useForm();
|
|
* const values = useWatch({
|
|
* control,
|
|
* defaultValue: {
|
|
* name: "data"
|
|
* },
|
|
* exact: false,
|
|
* })
|
|
* ```
|
|
*/
|
|
export declare function useWatch<TFieldValues extends FieldValues = FieldValues, TTransformedValues = TFieldValues>(props: {
|
|
defaultValue?: DeepPartialSkipArrayKey<TFieldValues>;
|
|
control?: Control<TFieldValues, any, TTransformedValues>;
|
|
disabled?: boolean;
|
|
exact?: boolean;
|
|
}): DeepPartialSkipArrayKey<TFieldValues>;
|
|
/**
|
|
* Custom hook to subscribe to field change and isolate re-rendering at the component level.
|
|
*
|
|
* @remarks
|
|
*
|
|
* [API](https://react-hook-form.com/docs/usewatch) • [Demo](https://codesandbox.io/s/react-hook-form-v7-ts-usewatch-h9i5e)
|
|
*
|
|
* @param props - defaultValue, disable subscription and match exact name.
|
|
*
|
|
* @example
|
|
* ```tsx
|
|
* const { control } = useForm();
|
|
* const values = useWatch({
|
|
* control,
|
|
* name: ["fieldA", "fieldB"],
|
|
* defaultValue: {
|
|
* fieldA: "data",
|
|
* fieldB: "data"
|
|
* },
|
|
* exact: false,
|
|
* })
|
|
* ```
|
|
*/
|
|
export declare function useWatch<TFieldValues extends FieldValues = FieldValues, TFieldNames extends readonly FieldPath<TFieldValues>[] = readonly FieldPath<TFieldValues>[], TTransformedValues = TFieldValues>(props: {
|
|
name: readonly [...TFieldNames];
|
|
defaultValue?: DeepPartialSkipArrayKey<TFieldValues>;
|
|
control?: Control<TFieldValues, any, TTransformedValues>;
|
|
disabled?: boolean;
|
|
exact?: boolean;
|
|
}): FieldPathValues<TFieldValues, TFieldNames>;
|
|
/**
|
|
* Custom hook to subscribe to field change and isolate re-rendering at the component level.
|
|
*
|
|
* @remarks
|
|
*
|
|
* [API](https://react-hook-form.com/docs/usewatch) • [Demo](https://codesandbox.io/s/react-hook-form-v7-ts-usewatch-h9i5e)
|
|
*
|
|
* @example
|
|
* ```tsx
|
|
* // can skip passing down the control into useWatch if the form is wrapped with the FormProvider
|
|
* const values = useWatch()
|
|
* ```
|
|
*/
|
|
export declare function useWatch<TFieldValues extends FieldValues = FieldValues>(): DeepPartialSkipArrayKey<TFieldValues>;
|
|
//# sourceMappingURL=useWatch.d.ts.map
|