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

@pinegrow/quasar-module

v3.0.52

Published

Pinegrow Quasar Module

Downloads

48

Readme

Pinegrow Quasar Module

npm version npm downloads License

Quasar module for Pinegrow ⚡️

Pinegrow Quasar Module includes the Pinegrow Vite Plugin that enables connection and interaction between your Vite Dev-Server and Pinegrow apps (currently only Vue Designer).

Pinegrow Quasar Module provides customized visual controls, design panel for theming and other rich visual features customized for your Quasar experience.

Note:

Features

  • 🎨  Visually live-design your Vite-powered Quasar apps
  • ⚙️  Smartly integrates into your Vite workflow in dev-mode only
  • ✨  Clean code 😃, No lock-in - You are in control of your projects and development workflow ❤️

Quick Setup

  1. Install: Add @pinegrow/quasar-module to your project
# Using npm
npm install -D @pinegrow/quasar-module

# Using pnpm
pnpm add -D @pinegrow/quasar-module
  1. Configure: Add @pinegrow/quasar-module to your Quasar vitePlugins array quasar.config.js
//quasar.config.js

module.exports = configure(function (/* ctx */) {
	return {
		//... existing config
		build: {
			vitePlugins: [
				[
					require('@pinegrow/vite-plugin').liveDesigner,
					{
						quasar: {
							/* Please ensure that you update the filenames and paths to accurately match those used in your project. */
							configPath: 'quasar.config.js',
							// themePath: false, // Set to false so that Design Panel is not used
							// restartOnConfigUpdate: true,
							restartOnThemeUpdate: true,
						},
						//... existing config
					},
				],
			],
		},
		//...
	}
})
  1. Now, open your project in your Pinegrow app (currently only Vue Designer). ✨

  2. Theme Customization (optional) - Pinegrow Quasar addon enables easy theming based on colors, fonts and background images. Theme files are saved at the location specified by the themePath option (default: [src]/themes/pg-quasar/tokens.[cjs,mjs]). To use the theme, follow the instructions in the Config Panel of your Pinegrow app (currently only Vue Designer) under @pinegrow/quasar-module package.

Options

interface PinegrowQuasarModuleOptions {
	/**
	 * Absolute or relative path of the quasar configuration file.
	 */
	configPath: string | any

	/**
	 * Absolute or relative path of the quasar theme file.
	 * @default 'src/themes/pg-quasar/tokens.[cjs,mjs]'
	 * @default 'themes/pg-quasar/tokens.[cjs,mjs]' // Nuxt
	 * Set to false to turn off theming via Design Panel
	 */
	themePath?: string | boolean

	/**
	 * Restart on quasar config file updates
	 * @default false
	 */
	restartOnConfigUpdate?: boolean

	/**
	 * Restart on quasar theme file updates
	 * @default false
	 */
	restartOnThemeUpdate?: boolean
}

interface PinegrowQuasarModule {
	/**
	 * Pinegrow Quasar Module Options, added within liveDesigner in quasar config file
	 */
	quasar: PinegrowQuasarModuleOptions
}

License

MIT License

Copyright (c) Pinegrow