I implemented normalization of the data that serves informational purposes - label, hint, a placeholder. We don't want to normalize stuff like name or value because their values can be used as unique identifiers and this can break the consumer in a very unexpected way.
Example of previous behavior: Let's assume that the element label is limited to 24 characters. If we set aaaaaaaaaaaaaaaaaaaaaaaaaa(26 chars long) as a label, the model is going to fail on the build.
Current behavior: We are going to show aaaaaaaaaaaaaaaaaaaaaa... instead to fit into the limit.
I implemented normalization of the data that serves informational purposes - label, hint, a placeholder. We don't want to normalize stuff like
name
orvalue
because their values can be used as unique identifiers and this can break the consumer in a very unexpected way.Example of previous behavior: Let's assume that the element label is limited to 24 characters. If we set
aaaaaaaaaaaaaaaaaaaaaaaaaa
(26 chars long) as a label, the model is going to fail on the build. Current behavior: We are going to showaaaaaaaaaaaaaaaaaaaaaa...
instead to fit into the limit.