Our team recently upgraded primereact version from 7.2.0 to 8.7.3. In Password component, we are facing issue after latest upgrade. We have using Password Meter in password form . In our application, we are using a Reset button for clearing all data in the forms which include password form too. But after resetting, when we click on the password form, we can see the previous state, that means we can see the meter with previous password strength. To fix this issue, we were using a reference in Password component. While resetting we are using the following logic to reset password meter to null.
passwordRef.current.state.meter = null,
Here passwordRef is the ref which we are using in the Password component. In 7.2.0 version state object were available. I am attaching the screenshot.

After the upgrade to 8.2.0 the state object is not available. We are facing a problem here (how to reset meter value) and this is critical for us. I am attaching the screenshot for after upgrading to 8.2.0
[url=https://ibb.co/1ZSTmzW]

Please provide the solution for this problem. Thank you.