npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@openproject/octicons-angular

v19.11.0

Published

[![npm version](https://img.shields.io/npm/v/@openproject/octicons-angular.svg)](https://www.npmjs.org/package/@openproject/octicons-angular)

Downloads

4,311

Readme

@openproject/octicons-angular

npm version

Install

npm install @openproject/octicons-angular

Usage

Angular component

The @openproject/octicons-angular module exports standalone components as named exports. This allows you to import only the icons that you need without blowing up your bundle:

import { Component } from '@angular/core';
import { LogIconComponent } from '@openproject/octicons-angular';

@Component({
  imports: [
    LogIconComponent,
  ],
  template: `<svg log-icon></svg>`,
})
export class MyComponent {}

In the code you simply use an svg tag with the name as attribtue. E.g:

<svg log-icon></svg>

Vertical alignment

By default the octicons have vertical-align: text-bottom; applied as inline styles. You can change the alignment via the verticalAlign input, which can be either middle, text-bottom, text-top, or top.

<svg
  log-icon
  vertical-align="text-bottom"  
></svg>

aria-label

You have the option of adding accessibility information to the icon with the aria-label attribute via the aria-label input.

<svg
  log-icon
  aria-label="Look at the logs"  
></svg>

aria-labelledby

You have the option of adding accessibility information to the icon with the aria-labelledby attribute via the aria-labelledby input. Using aria-labelledby referencing the id values of the title element provides the accessible name.

<svg
  log-icon
  aria-labelledby="title"  
  title="Look at the logs"  
></svg>

title

You have the option of adding accessibility information to the icon with the title attribute via the title input.

id

You have the option of adding information to the icon with the id attribute via the id input.

<svg
  log-icon
  id="unique-log-icon"  
></svg>

tabIndex

You can add the tabindex attribute to an SVG element via the tabIndex input if the SVG element is intended to be interactive. tabIndex input also controls the focusable attribute of the SVG element which is defined by SVG Tiny 1.2 and only implemented in Internet Explorer and Microsoft Edge.

If there is no tabIndex input is present (default behavior), it will set the focusable attribute to false. This is helpful for preventing the decorative SVG from being announced by some specialized assistive technology browsing modes which can get delayed while trying to parse the SVG markup.

<svg
  log-icon
  aria-label="Interactive log icon"  
  [tabIndex]="0" 
></svg>

Sizes

The size input takes small, medium, and large values that can be used to render octicons at standard sizes:

| Prop | Rendered Size | | :-------------- | :------------------------------ | | size='small' | 16px height by computed width | | size='medium' | 32px height by computed width | | size='large' | 64px height by computed width |

<svg
  log-icon
  size="small"  
></svg>

Fill

The fill input takes a string value that can be used to set the color of the icon. By default, fill is set to currentColor.

<svg
  log-icon
  fill="#f00"  
></svg>

Dom string rendering

Alternatively, you can render an icon SVG directly, for example in legacy jQuery code:

import { logIconData, toDOMString } from '@openproject/octicons-angular';

const mySVGString:string = toDOMString(
  logIconData, // SVG data for the icon. You can get this by importing `${name}IconData`
  'small', // The icon size. Optional
  { 'aria-hidden': 'true' }, // Extra attributes like class, style, aria, and others. Optional.
);
document.body.innerHTML = mySVGString;