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

sme-theme

v1.1.2

Published

SME Theme

Downloads

79

Readme

SME Theme

This is a BETA module and is exclusive to ReactJS.

Installation

npm i sme-theme

How To Use

Importing the JS

The sme-theme has over 30 components, but you can only import as many as you need into your page, as follows: import { Text, Title, Button, etc } from "sme-theme". The list of available components is below.

After importing a component, use it as follows: <Component attribute={value}>{content}</Component>

Each component has its own characteristics, such as specific attributes and some has no child content.

  • Component example with content: <Text className="my-text" tag="span">{content}</Text>

  • Component example without content: <Image className="my-image" src="logo.svg"/>

The components were developed with minimal changes to the html tags and the tags proposed by ReactJS.

Importing the SCSS

To import scss into your project, use in your scss: @import "../node_modules/sme-theme/src/theme.scss";

You can import the default theme or create your own in your application. Just follow the steps:

  • Check which variables will be modified in: node_modules/sme-theme/src/vatiables.scss
  • In the default application scss reset the variables, example: $ font-family: Montserrat! default;
  • Immediately after that, import the main theme scss: node_modules/sme-theme/src/theme.scss

List of components:

Attributes are listed in square brackets: []

Basics

  • Bg [className, image, color, overlayerImage, overlayerColor]
  • Breadcrumb [children, className, tag]
  • Button [children, to, href, className, target, active, disabled, plugin, ga, loading, type, onClick, behaviour]
  • Card [children, className]
  • Counter [step, interval, max, activ, endValue, onComplete]
  • Divider [children, className]
  • Form [children, onSubmit, className]
  • Icon [name, className]
  • Image [src, className, alt]
  • Input [id, children, type, mask, options, className, name, imageSrc, imageClass, buttonClass, buttonText, helpText, errorText, focus, after, plugin, disabled]
  • Progress [className, progress]
  • Slide [children, className]
  • Slider [children, className]
  • Spinner [children, className]
  • Status [children, className, success, error]
  • Tab [children, render, className]
  • Tabs [children, className]
  • Text [children, className, tag]
  • Title [children, className, tag]
  • Video [className, url]

Layout

  • Cell [children, size, className]
  • Collapse [children, className, show]
  • Container [children, className]
  • Grid [children, className]
  • Page [children, name, className, loading, footer, title, header]
  • Table [children, className]
  • Template [children, condition]
  • Wrap [children, className]

Modules

  • Alert [children, className, title, type, iconName]
  • Menubar [children, className, collapse, header]
  • Modal [children, className]
  • Navbar [children, className]
  • Pagination [className, size, page, step]
  • Titlebar [children, className]