This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Description
Currently the floating label always needs to be wrapped inside of the notched-outline structure. e.g.
<div class="mdc-notched-outline">
<div class="mdc-notched-outline__leading"></div>
<div class="mdc-notched-outline__notch">
<!-- Needs label here! -->
</div>
<div class="mdc-notched-outline__trailing"></div>
</div>
The use case of allowing that the notched-outline is decoupled from the floating label structure-wise is that prefixes and suffixes can have flexible dimensions. To make the outline work properly with flexible prefixes and suffixes, the following things are necessary:

- The floating label needs to be inside of a container that is matches the boundaries of the input. This ensures that the floating label "looks" like a placeholder in the docked state, and in the floated state it won't be in the prefix container.
- The notched-outline needs to overlap the whole text-field. i.e. including prefix and suffix container.
Doing these things allows for flexible prefix and suffix containers (which is a requirement for our MDC-based implementation of the Angular Material form-field).
The problem currently is that we can only do (1) while (2) is not possible when (1) is solved. This is because the floating label cannot be a child of the notched-outline as it would mean that the label is no longer relative to the input container. Both actions/requirements are mutual exclusive at the time of writing.
To make this work the best would be if the notched-outline does not need the label as children, but rather can just accept it through a foundation/adapter method.