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

@claudio_asc/abpcxuikit

v1.0.3

Published

ABP vNext CX UI Kit

Downloads

14

Readme

Cx UI Kit for Abp vNext

Getting Started

To start working on the UI kit, please install all npm dependencies.

npm install

Sass

Files inside sass folder are .scss files from Quantum Pro UI kit and are modifiable. These files will be compiled into css files that will be put under assets/css folder.

Custom Dependencies

By default, the package will have a dependency to ABP MVC Basic UI Theme and natives. This can be found under dependencies section in package.json.

"dependencies": {
    "@abp/aspnetcore.mvc.ui.theme.basic": "^0.4.9",
    "natives": "^1.1.6"
}

However, when the UI kit is not able to handle new requirements and there is a need to add more references, the new dependencies should be added under customDependencies section.

"customDependencies": {
    "jquery-blockui": "^2.7.0",
    "blueimp-file-upload": "^9.31.0"
}

Compiling Package Using Gulp

To compile, run the command below in terminal.

gulp

There are several gulp tasks that will run by default when the command is executed.

  1. Bootstrap
    Compile bootstrap.scss into bootstrap.css and put it under assets/css/vendor folder.

  2. Sass
    Compile scss files under sass/common/ folder to css files and put it under assets/css/common/ folder.

  3. verticalLayout
    Compile scss files under sass/layouts/vertical/core/ folder to css files and put it under assets/css/layouts/vertical/core/ folder.

  4. horizontalLayout
    Compile scss files under sass/layouts/horizontal/core/ folder to css files and put it under assets/css/layouts/horizontal/core/ folder.

  5. verticalLayoutMenu
    Compile scss files under sass/layouts/vertical/menu-type/ folder to css files and put it under assets/css/layouts/vertical/menu-type/ folder.

  6. horizontalLayoutMenu
    Compile scss files under sass/layouts/horizontal/menu-type/ folder to css files and put it under assets/css/layouts/horizontal/menu-type/ folder.

  7. verticalThemes
    Compile scss files under sass/layouts/vertical/themes/ folder to css files and put it under assets/css/layouts/vertical/themes/ folder.

  8. horizontalThemes
    Compile scss files under sass/layouts/horizontal/themes/ folder to css files and put it under assets/css/layouts/vertical/themes/ folder.

  9. installCustomDependencies
    Install all dependencies that are put under customDependencies section in package.json to its latest version.

  10. copyCustomDependencies
    Copy all the installed custom dependencies files to assets/vendor folder

@icon-info-circle Note

When executing gulp command, all the tasks will be executed in order (task 1 will be the first and task 10 will be the last)

Publishing a Package

  • Run gulp if it has not been done prior to publishing

  • Log in to npm package repository with Ascentis developer account, run the command below in terminal and fill in username, password and email

    npm login
  • Increment the package version in package.json accordingly.
> Current version : 1.0.0

@icon-info-circle Semantic Versioning

For more information on semantic versioning, go to

  • Run below command to publish the package
    npm publish --access public