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
At the moments icons I add with AddIcons which have numbers included convert those the following way eg.:
"testArrowLeft2" -> "test-arrow-left2"
This is a problem for me when to convert to standalone components in angular. A library uses an icon which has a number at the end and the icon is hardcoded into the library as eg. "test-arrow-left-2".
Current Behavior
At the moments icons I add with AddIcons which have numbers included convert those the following way eg.:
"testArrowLeft2" -> "test-arrow-left2"
This is a problem for me when to convert to standalone components in angular. A library uses an icon which has a number at the end and the icon is hardcoded into the library as eg. "test-arrow-left-2".
Expected Behavior
Expected would be "test-arrow-left-2"
Steps to Reproduce
Use an icon with a number at the end.
Code Reproduction URL
No response
Additional Information
The problem seams to be in the used regex:
const toKebabCase = name.replace(/([a-z0-9]|(?=[A-Z]))([A-Z])/g, "$1-$2").toLowerCase();
possible solution would be:
Here not as an image:
/([a-z]|(?=[A-Z]))([A-Z0-9])/g
The text was updated successfully, but these errors were encountered: