@hadyfayed/filament-workflow-canvas
Version:
Visual workflow builder and canvas component for Filament applications
18 lines • 603 B
TypeScript
import { FC } from 'react';
export interface NodeBasicPropertiesProps {
nodeId: string;
label: string;
description: string;
onLabelChange: (value: string) => void;
onDescriptionChange: (value: string) => void;
labelLabel?: string;
descriptionLabel?: string;
descriptionPlaceholder?: string;
disabled?: boolean;
}
/**
* NodeBasicProperties component for common node properties
* Provides label and description fields with consistent styling
*/
export declare const NodeBasicProperties: FC<NodeBasicPropertiesProps>;
//# sourceMappingURL=NodeBasicProperties.d.ts.map