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

pip-webui-layouts

v2.1.0

Published

Responsive content layouts for Pip.WebUI

Downloads

13

Readme

Responsive content layouts

Development responsible applications requires to organization content the way that can fit available screen from small phones to large desktops. In Line-of-Business applications with tens screens and dialogs implementaing responsive layouts can be time consuming and error prone task. To make it more productive Pip.WebUI.Layouts module provides a set of universal responsible layouts that can help to organize content in number of different ways: as full-screen content, documents, tiles, dialogs and more.

Simple layout is the simple layout type. It simply provides to content the entire screen, full width and full height

See online sample here...

Single document layout places content as a document with fixed width and full height centered on the screen. On tables and phones the content occupies the whole screen line it Simple layout.

See online sample here...

Multi-documents layout is an extention to Document layout that adds a list on the left hand side to switch between documents. On phones the list occupies the entire screen and user switches between list and document back and forth.

See online sample here...

Menu layout is combines menu that adds on the left hand side to switch between documents and Document layout or Single document layout. On phones the menu occupies the entire screen and user switches between menu and document back and forth.

You can hide menu if this need.

See online sample here...

Card layout places small content at the center of the screen in a card. On phones the content is extended to the whole screen.

See online sample here...

Tiles layout is used to present multiple items in tiles that arranged on the screen in one or several columns.

See online sample here...

Tiles groups layout is an extension to Tiles layout that breaks items into groups.

See online sample here...

Dialog layout places content in a modal dialog. On phones the dialog is resized to occupy the entire screen.

See online sample here...

Media service pipMedia is used to evaluate whether a given media query is true or false given the current device's screen / window size.

pipMedia also has pre-programmed support for media queries that match the layout breakpoints: | Breakpoint | mediaQuery | |---|---| | xs | (max-width: 599px) | | gt-xs | (min-width: 600px) | | sm | (min-width: 600px) and (max-width: 959px) | | gt-sm | (min-width: 960px) | | md | (min-width: 960px) and (max-width: 1279px) | | gt-md | (min-width: 1280px) | | lg | (min-width: 1280px) and (max-width: 1919px) | | gt-lg | (min-width: 1920px) | | xl | (min-width: 1920px) |

See online sample here...

Learn more about the module

Module dependencies

License

This module is released under MIT license and totally free for commercial and non-commercial use.