diff --git a/comps/form/field/FieldInput.tsx b/comps/form/field/FieldInput.tsx index 4ba6777..dc9d94c 100755 --- a/comps/form/field/FieldInput.tsx +++ b/comps/form/field/FieldInput.tsx @@ -147,7 +147,7 @@ export const FieldInput: FC<{ "field-inner c-flex-1 c-flex c-items-center", field.type === "link" && "c-justify-end", field.focused && "focused", - disabled && "c-pointer-events-none" + disabled && "c-pointer-events-none c-bg-gray-50" )} > {not_ready ? ( diff --git a/comps/ui/flow.tsx b/comps/ui/flow.tsx new file mode 100755 index 0000000..de6631e --- /dev/null +++ b/comps/ui/flow.tsx @@ -0,0 +1,26 @@ +import { FC } from "react"; + +export const Flow: FC<{ + children: any; + PassProp: any; + flow: { text: string; popover: any; icon: any }[]; + props?: any; +}> = ({ PassProp, children, flow, props }) => { + return ( +