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

@arc-fusion/pb-icons

v1.2.5

Published

PageBuilder Icon Library

Downloads

84

Readme

PB Icons

PB Icons is used by Theme and Fusion developers to enhance their curation experience in PB Editor. You can view all available PB icons here.

Create new package version

  1. Arc design team will request an import of streamline sets/subsets or custom Arc svg icon
  2. Add svg to the img directory. The name of the file will be the id used by Fusion/Theme developers, so please do not change any .svg filenames after initial upload.
  3. Ensure the icons you upload use currentColor variable instead of a color hex code.
  4. Update the version # in package.json
  5. Run npm publish
  6. After you publish the icon library it can be installed in PB Editor or any other PB application
  7. Create a PR with your changes and message Editor team in Slack (#pb-editor)

Imported Streamline Icon Sets

You can view all Streamline sets and subsets for https://app.streamlinehq.com/icons/streamline-regular. Please update this list fiir tracking purposes if Arc design team wants to add new icon sets/subsets.

Set: Interface Essentials

Subsets

  • Dashboard
  • Settings
  • Controls
  • Alerts
  • Filter
  • Help
  • Stats
  • Date Calendar
  • Edit
  • Delete
  • View
  • Search
  • Link
  • Share
  • Pin
  • Text Formatting
  • Text Options
  • Lists
  • Paragraphs
  • Layouts
  • Hierarchy Organization
  • Multimedia controls
  • Select
  • Expand Retract
  • Tags/Bookmarks

Set: Programing Apps Websites

Subsets

  • Programing
  • Plugins Modules
  • Programing Languages
  • Website Development
  • UI Components
  • Apps

Set: Business Products

Subsets

  • Analytics
  • Data Files

Set: Shopping Ecommerce

Subsets

  • Shops
  • E Commerce
  • Mobile Shopping
  • Receipts
  • Discount Coupons
  • Tag codes
  • Shopping Bags
  • Baskets
  • Carts
  • Products

Set: Content

Subsets

  • Content creation
  • Books
  • Notes
  • Archives
  • Newspapers

Set: Design

Subsets

  • Design Tools
  • Vectors
  • Colors Painting
  • Shapes
  • Layers
  • Grids Rulers
  • Crops Artboards
  • Align
  • Flip
  • Transform
  • Reorder
  • Pathfinder
  • Resize

Set: Images Photography

Subsets

  • Cameras
  • Pictures
  • Picture Frames
  • Light modes
  • Focus

Set: Video Movies TV

Subsets

  • ALL SETS

Set: Weather

Subsets

  • Weather

Set: Arrows Diagrams

Subsets

  • Arrows
  • Diagrams

PageBuilder Internal Icons (React Components)

These are React component SVG icons used in the PB Editor ui.

In your component

import PageBuilderIcons from '@arc-fusion/pb-icons'

Raw Usage

{PageBuilderIcons.misc.plus}

Actionable Usage

<span className="someclass" onClick={() => { // dosomething }}>{PageBuilderIcons.misc.plus}</span>

Available Icons

  • Preview
  • Toolbar
  • Workspace
  • Blocks
  • Misc

Modification

Run npm run build after modifying any icons.

Local Development

Use npm link for local testing/development of this module.

  • cd pb-icons
  • sudo npm link
  • cd myproject
  • sudo npm link @arc-fusion/pb-icons

When finished dev/testing, unlink the module to continue using the remote package instead of local.

  • cd pb-icons
  • npm unlink

Don't forget to publish your modifications back to npmjs.