I have a input in a Flow. I need pass this variable to Flow (this flow will do some calculations according to the value of that input). I have tried to pass the recordId, and it works, but not the value of the input, is it possible?
lwc.meta
<targets>
<target>lightning__AppPage</target>
<target>lightning__FlowScreen</target>
</targets>
<targetConfigs>
<targetConfig targets="lightning__FlowScreen">
<property name="CurrentStage" type="String" label="Current Stage" description="Current Stage"/>
<property name="Stages" type="Stages" label="Stages" description="Stages"/>
</targetConfig>
</targetConfigs>
LWC.js
@api CurrentStage;
@api Stages;
If I change the value of the input it does not change in the LWC How can I pass this value to the flow? When changing the value, does any function jump to capture it?
Thank you
