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

@loomhq/lens

v11.32.0

Published

![](https://github.com/loomhq/lens/blob/main/assets/lens-banner.png?raw=true)

Downloads

8,655

Readme

Lens — the design system for Loom products

npm

Installation

Add Lens to your app:

yarn add @loomhq/lens

Add dependencies:

yarn add @emotion/core
yarn add @emotion/styled

Install CSS variables

getThemeStylesString() and getAllCssVarsString() return strings that contain all CSS variables. Use these functions and inject the output to a style tag in the head:

import { getThemeStylesString, getAllCssVarsString } from '@loomhq/lens'

const style = document.createElement('style');
style.innerHTML = getThemeStylesString() + getAllCssVarsString();
document.head.appendChild(style);

In some cases you might need to inject the CSS variables to a specific element. Pass a string argument to getThemeStylesString() and getAllCssVarsString():

getThemeStylesString('.myGlobalElement')
getAllCssVarsString('.myGlobalElement')

Install CSS utilities

CSS classes are exported as a string and can be injected to a style tag in the head:

import { cssUtilities } from '@loomhq/lens'

const style = document.createElement('style');
style.innerHTML = cssUtilities();
document.head.appendChild(style);

Running Locally

pnpm i
pnpm dev
navigate to: http://localhost:3000

Contributing

Please surface any urgent pull requests in #lens-designsystem.

Use conventional commits

Use conventional commitsmessages. Once the PR is merged it will kick off publishing a new version of Lens in npm.

Upgrading Lens versions

loom

From the root of the main Loom repo

  1. [TEMPORARY WORKAROUND] Upgrade Lens by manually replacing all Lens versions within the loom monorepo with the current version under Releases.

For example, if you want to bump it to version 11.16.0, change the versions with a search and replace from its current version in the respective package.json files.

~~"@loomhq/lens": "^11.16.0",~~
"@loomhq/lens": "^11.16.1",
  1. From the root, fix dependencies and upgrade Lens globally
pnpm deps:fix && pnpm i

This shouldn't be necessary, but will correct any blocking issues.

Issue: If you're still having issues accessing new imports or code features from Lens after the above commands, make clean-node-deps in root of the repo and then reinstall everything with pnpm i.

  1. Run changesets so that it generates the necessary .md file for release.
pnpm changeset
  1. Follow the prompts. Hit Spacebar to select all changed packages. The checks should turn green. Hit Enter to commit.
🦋  Which packages would you like to include?
✔ changed packages
  ✔ @loomhq/web-client
  1. Skip major bump. Hit Enter to bypass.
🦋  Which packages should have a major bump? …
  1. Skip minor bump. Hit Enter to bypass.
🦋  Which packages should have a minor bump? …
  1. For patch bump, you will be prompted to write a description.
The following packages will be patch bumped:
🦋  @loomhq/[email protected]
🦋  Please enter a summary for this change (this will be in the changelogs). Submit empty line to open external editor
🦋  Summary › [description goes here, enter to complete]
  1. Write a concise note like bump Lens v[X.X.X] to add SvgIconName

  2. You will be asked asked if this is your desired change. Type 'Y'.

All dependents of these packages that will be incompatible with the new version will be patch bumped when this changeset is applied.

🦋  Is this your desired changeset? (Y/n) › [type Y]
  1. A new randomly-named .md file should be generated into the changesets directory. Commit this file to your changes.

  2. For any changes to existing components, do your due diligence and check the component changes locally within the repo.

Add an icon to the icon set

Once you have the SVG of the new icon to be added, make sure all strokes are outlined. Set <svg> attributes to viewBox="0 0 24 24" fill="none" {...props} and <path> attributes to fill="currentColor". Follow this for an example PR or watch https://www.loom.com/share/26e36c6616be4db386192467b88edbc9 for a step-by-step walkthrough.

Documentation

https://lens.loom.dev