🧹 Tech Debt
Our Angular component tests, the with property bound values variants, are meant to bind to the kebab-case property/input name, which gets us test coverage for the name used on the @Input() declarations.
We recently fixed some inconsistencies on the @Input() name used on the label providers (which was camelCased), which wasn't caught by the tests (since they were also set up with camel casing).
We should evaluate the remaining tests and make sure their template bindings is using the kebab-case bindings.
See this PR comment thread for original context.