You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since there are no dedicated outline-search or box-search styles, the <igc-input>'s outlined property conflicts with the type="search" attribute. This results in unintended styling when the input type is set to search.
To address this issue, one potential solution is to update the component's styles to ignore the outlined and box styles when the type is set to search. Alternatively, the outlined property can be programmatically disabled in the component's logic to prevent any interference.
In either case, it's important to clarify to users that if they set the type attribute to search, the outlined property will be ignored to ensure proper visual consistency and alignment with expected design.
Reproduction
Add an component to a page.
Set the type attribute of the component to "search".
Set the outlined property of the component to true.
Observe that the input styles are visually inconsistent or broken due to a conflict between the outlined property and the type="search" attribute styles.
Workaround
Don't use the outlined property if the input type is set to search
Is this a regression?
No or unsure. This never worker, or I haven't tried before.
Affected versions
All
Browser/OS/Node environment
All
The text was updated successfully, but these errors were encountered:
Which component(s) are affected?
Input
Description
Since there are no dedicated
outline-search
orbox-search
styles, the<igc-input>
's outlined property conflicts with thetype="search"
attribute. This results in unintended styling when the input type is set to search.To address this issue, one potential solution is to update the component's styles to ignore the outlined and box styles when the type is set to search. Alternatively, the
outlined
property can be programmatically disabled in the component's logic to prevent any interference.In either case, it's important to clarify to users that if they set the type attribute to search, the
outlined
property will be ignored to ensure proper visual consistency and alignment with expected design.Reproduction
Workaround
Don't use the outlined property if the input type is set to search
Is this a regression?
No or unsure. This never worker, or I haven't tried before.
Affected versions
All
Browser/OS/Node environment
All
The text was updated successfully, but these errors were encountered: