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

@db-ux/pv-icons

v0.0.7

Published

We provide pv-icons for DB Apps in this package. Because of legal concern some files are encrypted. To decrypt them you need to go to [Marketingportal](https://marketingportal.extranet.deutschebahn.com/marketingportal/Design-Anwendungen/db-ux-design-syste

Downloads

434

Readme

@db-ux/pv-icons

We provide pv-icons for DB Apps in this package. Because of legal concern some files are encrypted. To decrypt them you need to go to Marketingportal. Note: Deep links aren't working, you need to click the link again after login.

You will find two environment variables on the page:

  • ASSET_PASSWORD
  • ASSET_INIT_VECTOR

Before you install @db-ux/pv-icons you need to create a .env file and add it to your .gitignore. Afterward, you add those two variables to the .env file.

ASSET_PASSWORD=pv-icons
ASSET_INIT_VECTOR=pv-icons

The postintall script inside @db-ux/pv-icons will decrypt the files for you.

Note: You can use process.env. local or in CI/CD to pass the required environment variables to postinstall.

Install

Note: Read the disclaimer above :)

npm i @db-ux/pv-icons

Usage plain svg

  • You can copy assets from node_modules/@db-ux/pv-icons/dist/assets

Usage with @db-ui/components

Import

There are different ways to include the icons via a font-face. Therefore, you need to import the correct .css file. There are multiple files depending on the bundler you use:

  • relative.css: No bundler
  • absolute.css: No bundler
  • rollup.css: vite, rollup
  • webpack.css: webpack

JS/TS

// main.[js|ts]
import "@db-ux/pv-icons/dist/css/rollup.css";

CSS

/* main.css */
@import "@db-ux/pv-icons/dist/css/rollup.css";

Vite

You might need to add an additional resolve in vite.config.[js|ts]:

import * as path from "node:path";

export default defineConfig({
    ...
    resolve: {
        alias: {
            "@db-ux": path.resolve("node_modules/@db-ux"),
        },
    },
});

Use Font-Family

If you want to use the font family you can do it like this:

HTML

<button class="db-button" data-icon="my_icon" data-icon-variant="db-pv">
  Test
</button>

Angular

<db-button icon="my_icon" data-icon-variant="db-pv">Test</db-button>

React & Vue

<DBButton icon="my_icon" data-icon-variant="db-pv">
  Test
</DBButton>

You can add additional TypeScript support by including generated types to tsconfig.json:

React:
{
  "compilerOptions": ...,
  "include": [..., "node_modules/@db-ux/pv-icons/dist/types/react.d.ts"],
}

Vue:
{
  "compilerOptions": ...,
  "include": [..., "node_modules/@db-ux/pv-icons/dist/types/vue.d.ts"],
}

Deutsche Bahn brand

As we'd like to perfectly support our users and customers on their digital journey, the usage of Deutsche Bahn brand and trademarks are bound of clear guidelines and restrictions even when being used with the code that we're provide with this product; Deutsche Bahn fully reserves all rights regarding the Deutsche Bahn brand, even though that we're providing the code of DB UI products free to use and release it under the Apache 2.0 license. Please have a look at our brand portal at https://marketingportal.extranet.deutschebahn.com/ for any further questions and whom to contact on any brand issues.

You must remove or replace any Deutsche Bahn brand and design assets as well as protected characteristics and trademarks. We're even also planning to provide a neutral theme that would make it much easier for you to use our product without the trademarks by Deutsche Bahn.

Contributions

Contributions are very welcome, please refer to the contribution guide.

Code of conduct

We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone – have a look at our Contributor Covenant Code of Conduct.

License

This project is licensed under Apache-2.0.