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

proquest-uikit

v5.1.0

Published

ProQuest-UIKit contains the code used for styling sites for ProQuest. Please see UX-Framework (http://ux.proquest.com) site for implementation details. This project is intended for ProQuest properties, but we won't stop you from using it. Really though, j

Downloads

131

Readme

ProQuest UI Kit v5

ProQuest-UIKit contains the code used for styling sites for ProQuest. Please see UX-Framework site for implementation details.

If you don't have a modern commandline-based local build environment, you can simply download UIKit: https://github.com/pqdev/ProQuest-UIKit/tree/master/download

Version 5

ProQuest-UIKit v5 is built ontop of Bootstrap v5 using SCSS and then compiled to CSS. Previous versions required your project to have Bootstrap installed as a dependency and to have the bootstrap.css styles imported into your stylesheet or your angular.json file, but v5 will install Bootstrap as a dependency of itself and each UIKit them has bootstrap's style already integrated. This means a little less imports for your project.

Getting Started

Include ProQuest-UIKit into your project via NPM:
$ npm install proquest-uikit --save

Method 1 (For Angular and Non-Angular Projects)

Import Theme into style sheet
// Blue Theme
@import '~proquest-uikit/dist/css/uxframework-blue.min.css';

// Green Theme
@import '~proquest-uikit/dist/css/uxframework-green.min.css';

// Olive Theme
@import '~proquest-uikit/dist/css/uxframework-olive.min.css';

// Purple Theme
@import '~proquest-uikit/dist/css/uxframework-purple.min.css';

// Teal Theme
@import '~proquest-uikit/dist/css/uxframework-teal.min.css';
Import Icons into your style sheet
@import '~bootstrap-icons/font/bootstrap-icons.css';
Import Bootstrap.js into your JavaScript files
import '~bootstrap/dist/js/bootstrap.bundle.min.js';

Method 2 (Only for Angular Projects)

Inject Bootstrap.js, Icons, and PQ Theme style into angular.json
{
    "architech": {
        "build": {
            "options": {
                "scripts": [
                    "./node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"
                ],
                "styles": [
                    "./node_modules/dist/css/uxframework-blue.min.css"
                    "./node_modules/booststrap-icons/font/bootstrap-icons.css"
                ]
            }
        }
    }
}

File Structure

dist/
├── css/
│   ├── uxframework-blue.css
│   ├── uxframework-blue.min.css
│   ├── uxframework-green.css
│   ├── uxframework-green.min.css
│   ├── uxframework-olive.css
│   ├── uxframework-olive.min.css
│   ├── uxframework-purple.css
│   ├── uxframework-purple.min.css
│   ├── uxframework-teal.css
│   └── uxframework-teal.min.css
├── fonts/
│   ├── Aleo/
│   │   ├── Aleo-Bold.ttf
│   │   ├── Aleo-Bold.woff
│   │   ├── Aleo-Bold.woff2
│   │   ├── Aleo-BoldItalic.ttf
│   │   ├── Aleo-BoldItalic.woff
│   │   ├── Aleo-BoldItalic.woff2
│   │   ├── Aleo-Italic.ttf
│   │   ├── Aleo-Italic.woff
│   │   ├── Aleo-Italic.woff2
│   │   ├── Aleo-Light.ttf
│   │   ├── Aleo-Light.woff
│   │   ├── Aleo-Light.woff2
│   │   ├── Aleo-LightItalic.ttf
│   │   ├── Aleo-LightItalic.woff
│   │   ├── Aleo-LightItalic.woff2
│   │   ├── Aleo-Regular.ttf
│   │   ├── Aleo-Regular.woff
│   │   └── Aleo-Regular.woff2
│   └── Roboto/
│       ├── Roboto-Black.ttf
│       ├── Roboto-BlackItalic.ttf
│       ├── Roboto-Bold.ttf
│       ├── Roboto-BoldItalic.ttf
│       ├── Roboto-Italic.ttf
│       ├── Roboto-Light.ttf
│       ├── Roboto-Light.woff
│       ├── Roboto-Light.woff2
│       ├── Roboto-LightItalic.ttf
│       ├── Roboto-Medium.ttf
│       ├── Roboto-MediumItalic.ttf
│       ├── Roboto-Regular.ttf
│       ├── Roboto-Regular.woff
│       ├── Roboto-Regular.woff2
│       ├── Roboto-Thin.ttf
│       ├── Roboto-ThinItalic.ttf
│       ├── RobotoCondensed-Regular.ttf
│       ├── RobotoCondensed-Regular.woff
│       └── RobotoCondensed-Regular.woff2
└── images/
    ├── navIconBlue.svg
    ├── navIconGreen.svg
    ├── navIconOlive.svg
    ├── navIconPurple.svg
    ├── navIconTeal.svg
    ├── pq-logo-header.svg
    ├── pq-logo-light.svg
    ├── pq-logo.svg
    ├── sample-icon.png
    └── start-icon.png