Attach an element to provide this registry. Use detach when disconnected.
the element of which to provide this icon-set.
Define a icon to be served by this registry.
the name to use for this icon.
the svg source for this icon.
Detach an element from providing this registry.
the element of which to stop providing this icon-set.
Retrieve the SVG source of an icon, Returns ´null´ if the name does not exist.
the name of the icon to retrieve.
Dynamic concept by extending this class: extend getIcon in this way:
protected acceptIcon(iconName: string): boolean {
// Check if this is something we want to accept and provide. if(iconName === "myCustomIcon") {
// Inform that we will be providing this.
const icon = this.provideIcon(iconName);
// When data is available set it on this icon object, this can be done at any point in time:
icon.svg = "...";
return true;
}
return false; }
Protected
provideDeclare that this registry will be providing a icon for this name
the name of the icon to be provided.
UmbIconRegistry
Description