InputfieldFloat with input type number does not apply "any" as step attribute
The string "any" is a valid value for the step attribute of input type number: https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/input/number#step
But InputfieldFloat does not apply this value if given (it applies .01):
PW 3.0.252
Looking at the code, it's by design - it doesn't allow "any". For your usecase, does it help if you set step to 1?
I managed to get step="any" by setting precision to -1, but it's not intuitive that this would be necessary. It would help if the docs indicated what's required to achieve "any" if InputfieldFloat is not going to apply it when it's specifically set for the property.
It also seems wrong for the documentation to say that the default for "step" is "any" when that's not what you get if you create an instance of InputfieldFloat with minimal settings: