![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@sourcesync/quasar-ui-profiles
Advanced tools
Install the App Extension.
OR:
Create and register a boot file:
import Vue from "vue";
import Plugin from "@sourcesync/quasar-ui-profiles";
import "@sourcesync/quasar-ui-profiles/dist/index.css";
Vue.use(Plugin);
OR:
<style src="@sourcesync/quasar-ui-profiles/dist/index.css"></style>
<script>
import { Component as QProfile } from "@sourcesync/quasar-ui-profiles";
export default {
components: {
QProfile,
},
};
</script>
import Vue from "vue";
import Plugin from "@sourcesync/quasar-ui-profiles";
import "@sourcesync/quasar-ui-profiles/dist/index.css";
Vue.use(Plugin);
OR:
<style src="@sourcesync/quasar-ui-profiles/dist/index.css"></style>
<script>
import { Component as QProfile } from "@sourcesync/quasar-ui-profiles";
export default {
components: {
QProfile,
},
};
</script>
Exports window.qProfile
.
Add the following tag(s) after the Quasar ones:
<head>
<!-- AFTER the Quasar stylesheet tags: -->
<link
href="https://cdn.jsdelivr.net/npm/@sourcesync/quasar-ui-profiles/dist/index.min.css"
rel="stylesheet"
type="text/css"
/>
</head>
<body>
<!-- at end of body, AFTER Quasar script(s): -->
<script src="https://cdn.jsdelivr.net/npm/@sourcesync/quasar-ui-profiles/dist/index.umd.min.js"></script>
</body>
If you need the RTL variant of the CSS, then go for the following (instead of the above stylesheet link):
<link
href="https://cdn.jsdelivr.net/npm/@sourcesync/quasar-ui-profiles/dist/index.rtl.min.css"
rel="stylesheet"
type="text/css"
/>
<template>
<QProfile
v-model="data"
:schema="schema"
:loading="loading"
@submit="handleSubmit"
@changePassword="handleChangePassword"
/>
</template>
<script>
export default {
name: 'ProfilePage',
data: () => {
data: {
username: '@johndoe',
bio: 'lorem ipsum',
email: 'someone@example.com',
fname: 'John',
lname: 'Doe'
},
loading: {
save: false,
changePassword: false
},
},
computed: {
/** @returns { array } */
schema () {
return [
{
"name": "username",
"label": "Username",
"mask" : "@xxxxxxxxxx"
},
{
"name": "bio",
"label": "Bio",
"autogrow": true
},
{
"name": "email",
"label": "Email",
"disable": true,
"classes": "col-12"
},
{
"name": "fname",
"label": "First name",
"classes": "col-md-6 col-12"
},
{
"name": "lname",
"label": "Last name",
"classes": "col-md-6 col-12"
}
]
}
},
methods: {
/** mock profile update progress */
handleSubmit (data) {
// your api calls here
this.loading.save = true
setTimeout(() => {
this.loading.save = false
console.log(data)
}, 5000)
},
/** mock change password progress */
handleChangePassword (data) {
// your api calls here
this.loading.changePassword = true
setTimeout(() => {
this.loading.changePassword = false
console.log(data)
}, 5000)
}
}
}
</script>
Schema
key | value |
---|---|
name | 'username' |
label | 'Username' |
mask | '@xxxxxxxxxx' |
disable | false |
autogrow | false |
classes | col-lg-4 col-md-6 col-12 |
Mask
Documentation - Quasar.dev | Github - Full list
token | description |
---|---|
# | Numeric |
S | Letter, a to z, case insensitive |
N | Alphanumeric, case insensitive for letters |
A | Letter, transformed to uppercase |
a | Letter, transformed to lowercase |
X | Alphanumeric, transformed to uppercase for letters |
x | Alphanumeric, transformed to lowercase for letters |
$ yarn install // # npm install
# start dev in SPA mode
$ yarn dev
# start dev in UMD mode
$ yarn dev:umd
# start dev in SSR mode
$ yarn dev:ssr
# start dev in Cordova iOS mode
$ yarn dev:ios
# start dev in Cordova Android mode
$ yarn dev:android
# start dev in Electron mode
$ yarn dev:electron
$ yarn build
in the ui/dev/src/pages
you can add Vue files to test your component/directive. When using yarn dev
to build the UI, any pages in that location will automatically be picked up by dynamic routing and added to the test page.
If you have a component that has assets, like language or icon-sets, you will need to provide these for UMD. In the ui/build/script.javascript.js
file, you will find a couple of commented out commands that call addAssets
. Uncomment what you need and add your assets to have them be built and put into the ui/dist
folder.
If you appreciate the work that went into this, please consider donating to Quasar.
MIT (c) dev@sourcedigital.net
FAQs
Quasar Component for UserProfile
The npm package @sourcesync/quasar-ui-profiles receives a total of 2 weekly downloads. As such, @sourcesync/quasar-ui-profiles popularity was classified as not popular.
We found that @sourcesync/quasar-ui-profiles demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.