We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import { Component } from '@angular/core'; import { lucideX, lucidePlus } from '@ng-icons/lucide'; import { NgIcon, provideIcons } from '@ng-icons/core'; import { BrnDialogComponent, BrnDialogImports } from '@spartan-ng/ui-dialog-brain'; import { HlmDialogImports } from '@spartan-ng/ui-dialog-helm'; @Component({ selector: 'app-root', standalone: true, imports: [NgIcon], viewProviders: [provideIcons({ lucideX, lucidePlus })], template: ` <hlm-dialog-content *brnDialogContent="let ctx" class="max-w-4xl"> <hlm-dialog-header> <h3 hlmDialogTitle hlm>Icon in dialog test</h3> </hlm-dialog-header> <div hlmDialogOverlay class="max-w-none"> <div hlmDialogContent class="!max-w-none"> <ng-icon name="lucideX" /> <ng-icon name="lucidePlus" /> </div> </div> </hlm-dialog-content> `, }) export class App {}
dialog
When you want to register/provide an icon, and display it in a hlm-dialog, it don't show up if you didn't provided it in the root AppComponent.
"No icon named ... was found. You may need to import it using the withIcons function."
Here's the discord discussion when we found the issue: https://discord.com/channels/1145362148621557921/1304180397067731085
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Please provide the environment you discovered this bug in.
Which area/package is the issue in?
dialog
Description
When you want to register/provide an icon, and display it in a hlm-dialog, it don't show up if you didn't provided it in the root AppComponent.
Please provide the exception or error you saw
Other information
Here's the discord discussion when we found the issue: https://discord.com/channels/1145362148621557921/1304180397067731085
I would be willing to submit a PR to fix this issue
The text was updated successfully, but these errors were encountered: