Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@patternfly/pfe-icon
Advanced tools
Read more about Icon in the PatternFly Elements Icon documentation
Load <pfe-icon>
via CDN:
<script src="https://unpkg.com/@patternfly/pfe-icon?module"></script>
Or, if you are using NPM, install it
npm install @patternfly/pfe-icon
Then once installed, import it to your application:
import '@patternfly/pfe-icon';
<pfe-icon icon="rh-leaf"></pfe-icon>
There are no slots, but if you wish to display some text when JS is disabled, you can put some text inside the pfe-icon tag. For instance, when using a checkmark icon in a server status table, you may wish to display "success" if JS is disabled.
<pfe-icon icon="rh-check-mark">✅</pfe-icon>
Icon sets are defined in detail in [this blog post][icon-sets]. The blog post should eventually be absorbed into the official documentation.
To register a new icon set, choose a global namespace for that set and identify the path at which the SVGs for that set will be hosted. Consider also the function needed to convert the icon name into the filename on that hosted location. The addIconSet
call accepts the namespace (as a string), the path to the SVGs (as a string), and a function for parsing the icon name into the filename.
await customElements.whenDefined('pfe-icon');
const PfeIcon = customElements.get('pfe-icon');
PfeIcon.addIconSet(
"local",
"./",
function(name, iconSetName, iconSetPath) {
var regex = new RegExp("^" + iconSetName + "-(.*)");
var match = regex.exec(name);
return iconSetPath + match[1] + ".svg";
}
);
Out of the box, the default icon set (using the rh / web namespace) is hosted on access.redhat.com. If you would like to override the rh / web
namespace, you can add the following to a global variable named PfeConfig
.
The config must be set before the PfeIcon class is defined.
window.PfeConfig = {
IconSets: [
{
name: "web",
path: "path/to/svg/directory", // Or https://hosted-icons.com/,
resolveIconName: function(name, iconSetName, iconSetPath) { // Optional function to resolve icon paths.
var regex = new RegExp("^" + iconSetName + "-(.*)");
var match = regex.exec(name);
return iconSetPath + match[1] + ".svg";
}
}
]
};
Now when <pfe-icon>
is used, it will automatically reference the icon set defined in the config.
If you would like to opt out of any defaults so that you can dynamically add icon sets later using PfeIcon.addIconSet()
, use the following:
window.PfeConfig = {
IconSets: []
};
To updating an existing icon set, you use the same addIconSet
function. The first input which is the icon set namespace is required, as is the new path. You can optionally pass in a new function for parsing the icon names into filenames.
PfeIcon.addIconSet("local", "https://hosted-icons.com/");
FAQs
Icon element for PatternFly Elements
The npm package @patternfly/pfe-icon receives a total of 880 weekly downloads. As such, @patternfly/pfe-icon popularity was classified as not popular.
We found that @patternfly/pfe-icon demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 16 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.