Registrazione con lista extra utenti
This commit is contained in:
12
package.json
12
package.json
@@ -31,7 +31,7 @@
|
||||
"@babel/plugin-transform-runtime": "^7.4.0",
|
||||
"@babel/runtime": "^7.0.0",
|
||||
"@quasar/babel-preset-app": "^1.1.7",
|
||||
"@quasar/extras": "^1.3.3",
|
||||
"@quasar/extras": "^1.4.0",
|
||||
"@types/googlemaps": "^3.38.0",
|
||||
"@types/lodash": "^4.14.142",
|
||||
"@types/vuelidate": "^0.7.0",
|
||||
@@ -53,7 +53,7 @@
|
||||
"npm": "^6.10.0",
|
||||
"nprogress": "^0.2.0",
|
||||
"prerender-spa-plugin": "^3.4.0",
|
||||
"quasar": "^1.5.4",
|
||||
"quasar": "^1.7.0",
|
||||
"quasar-extras": "^2.0.8",
|
||||
"register-service-worker": "^1.0.0",
|
||||
"vee-validate": "^2.1.2",
|
||||
@@ -91,10 +91,10 @@
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
||||
"@babel/plugin-syntax-import-meta": "^7.2.0",
|
||||
"@babel/preset-env": "^7.4.2",
|
||||
"@quasar/app": "^1.4.2",
|
||||
"@quasar/quasar-app-extension-qcalendar": "^1.0.0",
|
||||
"@quasar/quasar-app-extension-qmediaplayer": "^1.0.16",
|
||||
"@quasar/quasar-app-extension-qscroller": "^1.0.4",
|
||||
"@quasar/app": "^1.4.5",
|
||||
"@quasar/quasar-app-extension-qcalendar": "^1.3.13",
|
||||
"@quasar/quasar-app-extension-qmediaplayer": "^1.0.17",
|
||||
"@quasar/quasar-app-extension-qscroller": "^1.0.5",
|
||||
"@quasar/quasar-app-extension-typescript": "^1.0.0-alpha.11",
|
||||
"@types/dotenv": "^4.0.3",
|
||||
"@types/jest": "^23.1.4",
|
||||
|
||||
18
src/App.scss
18
src/App.scss
@@ -16,6 +16,24 @@ p {
|
||||
margin: 0 0 8px;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
ul li::before {
|
||||
content: '\2713';
|
||||
color: red;
|
||||
display: inline-block;
|
||||
width: 1em;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
li {
|
||||
color: #2f2c8b;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
|
||||
@@ -13,6 +13,7 @@ const msg_website = {
|
||||
Test: 'Test',
|
||||
Category: 'Categorie',
|
||||
Admin: 'Admin',
|
||||
extralist: 'Lista Extra',
|
||||
Test1: 'Test1',
|
||||
Test2: 'Test2',
|
||||
chisiamo: 'Chi Siamo',
|
||||
|
||||
@@ -35,6 +35,19 @@ const routes_admin: IListRoutes[] = [
|
||||
submenu: true,
|
||||
onlyAdmin: true
|
||||
},
|
||||
{
|
||||
active: true,
|
||||
order: 1010,
|
||||
path: '/admin/extralist',
|
||||
materialIcon: 'event_seat',
|
||||
name: 'pages.extralist',
|
||||
component: () => import('@/views/admin/extralist/extralist.vue'),
|
||||
level_parent: 0.0,
|
||||
level_child: 0.5,
|
||||
inmenu: true,
|
||||
submenu: true,
|
||||
onlyAdmin: true
|
||||
},
|
||||
]
|
||||
|
||||
const routes_newsletter: IListRoutes[] = [
|
||||
@@ -110,6 +123,19 @@ const routes_manager: IListRoutes[] = [
|
||||
level_child: 0.5,
|
||||
onlyManager: true
|
||||
},
|
||||
{
|
||||
active: true,
|
||||
order: 15,
|
||||
path: '/admin/showextralist',
|
||||
materialIcon: 'fas fa-users',
|
||||
name: 'otherpages.admin.extralist',
|
||||
component: () => import('@/rootgen/admin/extraList/extraList.vue'),
|
||||
inmenu: true,
|
||||
submenu: true,
|
||||
level_parent: 0,
|
||||
level_child: 0.5,
|
||||
onlyManager: true
|
||||
},
|
||||
{
|
||||
active: true,
|
||||
order: 20,
|
||||
|
||||
@@ -16,7 +16,6 @@
|
||||
href="<%= htmlWebpackPlugin.files.publicPath %>statics/icons/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16"
|
||||
href="<%= htmlWebpackPlugin.files.publicPath %>statics/icons/favicon-16x16.png">
|
||||
<link rel="stylesheet" type="text/css" href="<%= htmlWebpackPlugin.files.publicPath %>statics/css/dragula.css">
|
||||
|
||||
<script src="<%= htmlWebpackPlugin.files.publicPath %>statics/js/track.js"></script>
|
||||
|
||||
|
||||
@@ -15,18 +15,18 @@ import MixinMetaTags from '@src/mixins/mixin-metatags'
|
||||
import { CCardCarousel, CImgText, CTitleBanner, CStatus } from '@components'
|
||||
import MixinBase from '@src/mixins/mixin-base'
|
||||
|
||||
Vue.use(VueScrollReveal, {
|
||||
class: 'v-scroll-reveal', // A CSS class applied to elements with the v-scroll-reveal directive; useful for animation overrides.
|
||||
duration: 1200,
|
||||
scale: 0.95,
|
||||
distance: '10px',
|
||||
rotate: {
|
||||
x: 0,
|
||||
y: 0,
|
||||
z: 0
|
||||
}
|
||||
// mobile: true
|
||||
})
|
||||
// Vue.use(VueScrollReveal, {
|
||||
// class: 'v-scroll-reveal', // A CSS class applied to elements with the v-scroll-reveal directive; useful for animation overrides.
|
||||
// duration: 1200,
|
||||
// scale: 0.95,
|
||||
// distance: '10px',
|
||||
// rotate: {
|
||||
// x: 0,
|
||||
// y: 0,
|
||||
// z: 0
|
||||
// }
|
||||
// // mobile: true
|
||||
// })
|
||||
|
||||
@Component({
|
||||
mixins: [MixinBase],
|
||||
@@ -43,7 +43,7 @@ export default class Home extends MixinBase {
|
||||
public $q
|
||||
public polling
|
||||
public slide = 'first'
|
||||
public slide_video = 'mp4_1'
|
||||
public slide_video = 'yt_1'
|
||||
public mysteps = 0
|
||||
public myaudio = 0
|
||||
public mytestimonianze = 0
|
||||
@@ -60,7 +60,8 @@ export default class Home extends MixinBase {
|
||||
value: 0,
|
||||
title: {
|
||||
it: '<strong>Passo 1 - Contributore Finanziario</strong><br><br>' +
|
||||
'Entro nella chat, dono <strong>33€</strong> e ho già <strong>trovato 2 persone</strong> che vogliono partecipare al gioco.',
|
||||
'A) Capisco come funziona. Condivido il gioco ad altre 2 persone che vogliono partecipare.<br>' +
|
||||
'B) Entro nella chat e dono i <strong>33€</strong> al gestore della Billettera.',
|
||||
es: '',
|
||||
enUs: ''
|
||||
},
|
||||
@@ -83,7 +84,7 @@ export default class Home extends MixinBase {
|
||||
value: 2,
|
||||
title: {
|
||||
it: '<strong>Passo 3 - Tesoriere/segretario</strong><br><br>' +
|
||||
'Collaborare, aggiornare doni, fornire informazioni, ma anche conoscersi, condividere esperienze, passioni e sogni.',
|
||||
'Collaboro, aggiorno la lista dei doni, fornisco informazioni, ma anche conosco, condivido esperienze, passioni e sogni.',
|
||||
es: '',
|
||||
enUs: ''
|
||||
},
|
||||
@@ -122,74 +123,6 @@ export default class Home extends MixinBase {
|
||||
}
|
||||
]
|
||||
|
||||
public todownload = {
|
||||
it: [
|
||||
{
|
||||
title: 'Billettera (passi 1-2-3).jpg',
|
||||
file: 'statics/images/it/Billetera_step_1_2_3.jpg'
|
||||
},
|
||||
{
|
||||
title: 'Billettera (passo 4).jpg',
|
||||
file: 'statics/images/it/Billetera_step_4.jpg'
|
||||
},
|
||||
{
|
||||
title: 'Passi semplificati.jpg',
|
||||
file: 'statics/images/it/passi_semplificati.jpg'
|
||||
},
|
||||
{
|
||||
title: 'Spiegazione (PDF)',
|
||||
file: 'statics/files/it/Billetera_spiegazione.pdf'
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
public audiofiles = {
|
||||
it: [
|
||||
{
|
||||
title: 'Elisa (Audio 1)',
|
||||
label: '1',
|
||||
value: 0,
|
||||
src: 'statics/audio/it/spiegazione_Billettera.mp3',
|
||||
type: 'audio/mp3'
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
public testimonianze = {
|
||||
it: [
|
||||
{
|
||||
title: '1. Giovanni',
|
||||
label: '1',
|
||||
value: 0,
|
||||
text: '<p>Amici di questa meravigliosa Billettera, mi permetto di dare un mio punto di vista a ' +
|
||||
'questo meraviglioso gruppo di amici che si stanno sostenendo a partecipare <strong>donando e ricevendo</strong> questo dono economico. ' +
|
||||
'In questo progetto bisogna entrarci con il <strong>cuore</strong>, in questo gioco di economia circolare, e non con la mente.</p>' +
|
||||
'<p>L\'ego mentale che ha costruito il giro di denaro sul potere, sul ricevere soldi dal lavoro, sull\'arrivismo, sullo scambiare ore della propria vita con denaro,' +
|
||||
' e solitamente dalla competizione e dalla fatica, non può concepire che <strong>si può donare dei soldi ad amici conosciuti e sconosciuti e ricevere altrettanti doni indietro</strong>, ' +
|
||||
'anche in denaro, da altri amici, che ti permetteranno di gioire di questa ricchezza economica che arriva solo da fatto che si possono utilizzare ' +
|
||||
'i soldi anche con gesti di puro Amore.</p> ' +
|
||||
'<p>Quando lo proponete ad amici è naturale che vi sentirete chiedere : <em>"Una piramide, dov\'è la fregatura?"</em><br>' +
|
||||
'Personalmente io parlo della mia esperienza, che sono felice di fare un dono di 33€ e di riceverne altrettanti e non vedo dove sta il problema.<br> ' +
|
||||
'Forse il sentirsi dire dei no, ci rimanda subito al mentale che si sente rifiutato ed entra subito nel giudizio negativo per se e verso gli altri,' +
|
||||
'questo è un gioco che ci aiuterà a vedere tante facce dell\'ego che boicotterà, che ci depisterà, che ci illuderà, ma dietro a tutto questo ' +
|
||||
'ci sta l\'Amore e la Consapevolezza che ci aiuteranno ad andare oltre e a procedere verso questa nuova esperienza di scambi di doni tra belle ' +
|
||||
'anime che stanno già condividendo e sostenendosi a vicenda per portare una nuova visione sull\'<strong>economia circolare dei soldi</strong>.</p>' +
|
||||
'<p>Insomma questa è una chance, per riprendere anche gli <strong>schemi già visti</strong> di scambi a diversi livelli, ma con tutta la nuova tecnologia che ' +
|
||||
'abbiamo a disposizione, che ci aiuta a <strong>rimanere connessi continuamente</strong>, e con la nuova consapevolezza che finalmente l\'essere umano sta ' +
|
||||
'raggiungendo, e di usarli, i network, per <strong>ridistribuire</strong>, anche se solo in piccola parte, <strong>un po\' di regali, gioia, amore, amicizia e denaro ' +
|
||||
'sul pianeta</strong>.</p>' +
|
||||
'<p>Questa billetera è una vera chance di <strong>cooperazione ad una ottava superiore</strong>, che porta con sé, anche molti <strong>regali</strong> di consapevolezza, ' +
|
||||
'crescita correttezza, precisione, onestà, cooperazione, amore.</p>',
|
||||
},
|
||||
{
|
||||
title: '2. Luca',
|
||||
label: '2',
|
||||
value: 1,
|
||||
text: ''
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
public advise = [
|
||||
{
|
||||
title: {
|
||||
@@ -264,20 +197,30 @@ export default class Home extends MixinBase {
|
||||
public created() {
|
||||
this.animare = process.env.DEV ? 0 : 8000
|
||||
|
||||
for (let index = 0; index <= this.getvideonum(true); ++index) {
|
||||
this.arrvideo_yt.push(this.getvideomp4yt(index))
|
||||
for (let index = 0; index <= tools.getvideonum(true); ++index) {
|
||||
this.arrvideo_yt.push(tools.getvideoyt(index))
|
||||
}
|
||||
for (let index = 0; index <= this.getvideonum(false); ++index) {
|
||||
this.arrvideo_mp4.push(this.getvideomp4src(index))
|
||||
for (let index = 0; index <= tools.getvideonum(false); ++index) {
|
||||
this.arrvideo_mp4.push(tools.getvideomp4src(index))
|
||||
}
|
||||
|
||||
// console.log(this.arrvideo_mp4)
|
||||
|
||||
GlobalStore.actions.prova()
|
||||
|
||||
this.endload = true
|
||||
}
|
||||
|
||||
get getvideonum_youtube() {
|
||||
return tools.getvideonum(true)
|
||||
}
|
||||
|
||||
get getvideonum_mp4() {
|
||||
return tools.getvideonum(false)
|
||||
}
|
||||
|
||||
get heightgallvideo() {
|
||||
return tools.heightgallvideo()
|
||||
}
|
||||
|
||||
get isLogged() {
|
||||
return UserStore.state.isLogged
|
||||
}
|
||||
@@ -355,84 +298,6 @@ export default class Home extends MixinBase {
|
||||
return tools.getappname(this, false)
|
||||
}
|
||||
|
||||
get getArrDisciplines() {
|
||||
return GlobalStore.state.disciplines.filter((rec) => rec.showinhome)
|
||||
}
|
||||
|
||||
public getpath(myvideo) {
|
||||
return 'statics/video/' + func_tools.getLocale() + '/' + myvideo
|
||||
}
|
||||
|
||||
public getkey(youtube, title, isnum) {
|
||||
let mykey = 'MP4'
|
||||
if (youtube)
|
||||
mykey = 'YT'
|
||||
|
||||
if (isnum) {
|
||||
mykey += '_NUM'
|
||||
} else {
|
||||
if (title)
|
||||
mykey += '_TITLE_'
|
||||
else
|
||||
mykey += '_VIDEO_'
|
||||
}
|
||||
|
||||
return mykey
|
||||
}
|
||||
|
||||
public getvideourl(index, youtube) {
|
||||
const myvideo = this.getValDb(this.getkey(youtube, false, false) + index, false)
|
||||
if (myvideo)
|
||||
return this.getpath(myvideo)
|
||||
else
|
||||
return ''
|
||||
}
|
||||
|
||||
public getvideonum(youtube) {
|
||||
return this.getValDb(this.getkey(youtube, false, true), false)
|
||||
}
|
||||
|
||||
get getvideonum_youtube() {
|
||||
return this.getvideonum(true)
|
||||
}
|
||||
|
||||
get getvideonum_mp4() {
|
||||
return this.getvideonum(false)
|
||||
}
|
||||
|
||||
get heightgallvideo() {
|
||||
const h = tools.heightgallery(this.getValDb('MP4_W', false) / this.getValDb('MP4_H', false))
|
||||
return h
|
||||
}
|
||||
|
||||
public mygetarrValDb(keystr, serv) {
|
||||
const myval = GlobalStore.getters.getValueSettingsByKey(keystr, serv)
|
||||
// console.log('AA: myval', myval)
|
||||
try {
|
||||
if (myval) {
|
||||
// console.log(' Entro')
|
||||
const myrec = JSON.parse(myval)
|
||||
// console.log('*************** getarrValDb')
|
||||
// console.table(myrec)
|
||||
return myrec
|
||||
} else {
|
||||
// console.log('NO MYVAL')
|
||||
return []
|
||||
}
|
||||
} catch (e) {
|
||||
console.log('Errore: ', e)
|
||||
return []
|
||||
}
|
||||
}
|
||||
|
||||
public getvideotitle(index, youtube) {
|
||||
|
||||
const mykey = this.getkey(youtube, true, false) + index
|
||||
const ris = this.mygetarrValDb(mykey, false)
|
||||
|
||||
return tools.getelembylang(ris)
|
||||
}
|
||||
|
||||
public gettitle_advise(rec) {
|
||||
return rec.title[tools.getLocale()]
|
||||
}
|
||||
@@ -446,28 +311,6 @@ export default class Home extends MixinBase {
|
||||
|
||||
}
|
||||
|
||||
public getaudiofiles() {
|
||||
return this.audiofiles[tools.getLocale()]
|
||||
}
|
||||
|
||||
public gettestimonianze() {
|
||||
return this.testimonianze[tools.getLocale()]
|
||||
}
|
||||
|
||||
public getvideomp4src(index) {
|
||||
return [{ src: this.getvideourl(index, false), type: 'video/mp4' }
|
||||
]
|
||||
}
|
||||
|
||||
public getvideomp4yt(index) {
|
||||
return [{ src: this.getvideourl(index, true), type: 'video/mp4' }
|
||||
]
|
||||
}
|
||||
|
||||
public getvideoposter(index) {
|
||||
return ''
|
||||
}
|
||||
|
||||
public getfileimgdown(rec) {
|
||||
return rec.file[tools.getLocale()]
|
||||
}
|
||||
|
||||
@@ -105,8 +105,8 @@
|
||||
<p class="cltexth4 text-red-8">E' uno scambio di Reciproco Aiuto</p>
|
||||
|
||||
<p class="cltexth4 text-blue-8">
|
||||
E' un sistema Circolare UMANO, che, se seguito bene, con il minimo sforzo, si ottieme il massimo
|
||||
apporto.
|
||||
E' un sistema Circolare Umano:<br>
|
||||
"Con il minimo sforzo ottengo il massimo apporto".
|
||||
</p>
|
||||
</div>
|
||||
</CImgText>
|
||||
@@ -167,8 +167,8 @@
|
||||
</div>
|
||||
</CTitleBanner>
|
||||
|
||||
<section class="q-pa-sm bg-primary landing__swirl-bg">
|
||||
<div class="landing__features row justify-sm-around column">
|
||||
<section class="q-pa-sm bg-primary landing__swirl-bg text-center">
|
||||
<div class="landing__features row justify-center column" style="max-width: 800px;">
|
||||
<q-carousel
|
||||
animated
|
||||
swipeable
|
||||
@@ -200,19 +200,19 @@
|
||||
</q-carousel-control>
|
||||
</template>
|
||||
|
||||
<q-carousel-slide v-for="index in getvideonum_mp4" :name="`mp4_`+index" :key="index">
|
||||
<q-carousel-slide v-if="getvideonum_mp4 > 0" v-for="index in getvideonum_mp4" :name="`mp4_`+index" :key="index">
|
||||
|
||||
<div v-if="getvideourl(index, false)"
|
||||
<div v-if="tools.getvideourl(index, false)"
|
||||
class="row justify-evenly items-center q-gutter-sm ">
|
||||
<div class="text-center">
|
||||
<div class="subtitle_small text-blue"
|
||||
v-html="getvideotitle(index, false)"></div>
|
||||
v-html="tools.getvideotitle(index, false)"></div>
|
||||
|
||||
<div class="">
|
||||
<q-media-player
|
||||
type="video"
|
||||
:sources="arrvideo_mp4[index]"
|
||||
:poster="getvideoposter(index)"
|
||||
:poster="tools.getvideoposter(index)"
|
||||
>
|
||||
</q-media-player>
|
||||
</div>
|
||||
@@ -222,12 +222,12 @@
|
||||
|
||||
</q-carousel-slide>
|
||||
|
||||
<q-carousel-slide v-for="index in getvideonum_youtube" :name="`yt_`+index" :key="index">
|
||||
<div v-if="getvideourl(index, true)"
|
||||
<q-carousel-slide v-if="getvideonum_youtube > 0" v-for="index in getvideonum_youtube" :name="`yt_`+index" :key="index">
|
||||
<div v-if="tools.getvideourl(index, true)"
|
||||
class="row justify-evenly items-center q-gutter-sm ">
|
||||
|
||||
<div class="text-center">
|
||||
<div class="subtitle_small text-blue" v-html="getvideotitle(index, true)"></div>
|
||||
<div class="subtitle_small text-blue" v-html="tools.getvideotitle(index, true)"></div>
|
||||
<div class="">
|
||||
<iframe
|
||||
:width="tools.getwidthscale(mythis(), getValDb('YT_W', false), 800)"
|
||||
@@ -255,11 +255,6 @@
|
||||
<div class="q-mx-md cltexth4">
|
||||
1) Voglia di giocare, e desiderio di Donare 33 € per aiutare un'altra persona a realizzare i propri
|
||||
sogni.<br><br>
|
||||
<!--<div class="text-center row block">
|
||||
<q-img src="/statics/images/it/Esempio_di_Billettera_di_Vera.jpg"
|
||||
style="height: 400px; max-width: 400px;"></q-img>
|
||||
</div>-->
|
||||
|
||||
2) L'impegno di seguire delle indicazioni nei tempi stabiliti all' interno di una chat, dove ogni
|
||||
passaggio è spiegato e guidato.<br><br>
|
||||
3) Parlare e condividere ai tuoi amici un messaggio dove spieghi questo sistema, impegnandoti così a trovare
|
||||
@@ -268,7 +263,6 @@
|
||||
|
||||
</CTitleBanner>
|
||||
|
||||
<!-- SUGGERIMENTI -->
|
||||
<CTitleBanner cl ass="q-pa-xs" :title="$t('text.advise')" bgcolor="bg-primary" clcolor="text-white"
|
||||
mystyle="letter-spacing: 0.25rem; " myclass="myshad" canopen="true">
|
||||
<div v-if="toolsext.isLang('it')">
|
||||
|
||||
@@ -53,9 +53,27 @@ export default class Testimonianze extends MixinBase {
|
||||
public testimonianze = {
|
||||
it: [
|
||||
{
|
||||
title: '1. Giovanni',
|
||||
title: '1. Maria',
|
||||
label: '1',
|
||||
value: 0,
|
||||
text: '<p><strong>Come Invitare le persone?</strong><br>' +
|
||||
'Invitare non è convincere nessuno, invitare non è togliere un impegno, invitare non è pensare a se stessi o al proprio interesse, invitare non è "mettere" qualcuno per aiutarti a realizzare il proprio sogno. <strong>Invitare è:</strong><br>' +
|
||||
'<ul><li>Ricorda perché hai dato il SI, ricorda cosa ti ha <strong>liberato delle tue paure</strong>.</li>' +
|
||||
'<li>È per darti la stessa <strong>opportunità</strong> che ti è stata data per realizzare un sogno.</li>' +
|
||||
'<li>Invitare è trasmettere a qualcuno la tua vita, la tua <strong>felicità</strong> di far parte di questo movimento, con leggerezza, ciò rompe i pregiudizi e cambia i paradigmi.</li>' +
|
||||
'<li>Aiutare a cambiare un po\' il mondo di quella persona.</li>' +
|
||||
'<li>Apparire al momento giusto da qualcuno che inconsapevolmente ti stava aspettando.</li></ul>' +
|
||||
'<p>👉 Quando devi invitare, non sentire che ti danno uno zaino pieno di responsabilità che non sarai in grado di adempiere, non sentire il peso sulla schiena, non sentire che sarai giudicato per averlo fatto "bene" o "male".<br>' +
|
||||
'Senti che è il tuo turno di comunicare con te stesso e comunicare i tuoi sentimenti verso quella PERSONA che vuoi accompagnare per realizzare nella loro vita. ✨✨ <br>' +
|
||||
'Ricorda in ogni invito perché sei qui. ❣️ Ricorda i tuoi sogni e i tempi in cui sono cambiati e si sono uniti a molti altri. ' +
|
||||
'Ricorda i sogni di ciascuna delle persone accanto a te, ricorda la sensazione di gettarti nella fiducia ricorda perché hai deciso di viverla e trasmetterla senza paura con certezza, con fede.<br>' +
|
||||
'<strong>Invitare è condividere</strong>, è <strong>Amare</strong> in ogni momento <strong>ciò che fai, dici e senti</strong>! E\' credere in ció che vivi e sentirti degno di esso.' +
|
||||
'</p>'
|
||||
},
|
||||
{
|
||||
title: '2. Giovanni',
|
||||
label: '2',
|
||||
value: 1,
|
||||
text: '<p>Amici di questa meravigliosa Billettera, mi permetto di dare un mio punto di vista a ' +
|
||||
'questo meraviglioso gruppo di amici che si stanno sostenendo a partecipare <strong>donando e ricevendo</strong> questo dono economico. ' +
|
||||
'In questo progetto bisogna entrarci con il <strong>cuore</strong>, in questo gioco di economia circolare, e non con la mente.</p>' +
|
||||
@@ -76,12 +94,6 @@ export default class Testimonianze extends MixinBase {
|
||||
'<p>Questa billetera è una vera chance di <strong>cooperazione ad una ottava superiore</strong>, che porta con sé, anche molti <strong>regali</strong> di consapevolezza, ' +
|
||||
'crescita correttezza, precisione, onestà, cooperazione, amore.</p>',
|
||||
},
|
||||
{
|
||||
title: '2. Luca',
|
||||
label: '2',
|
||||
value: 1,
|
||||
text: ''
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<CMyPage title="">
|
||||
<div class="q-ma-md">
|
||||
<span>{{ setmeta({
|
||||
title: 'Home',
|
||||
title: 'Testimonanze',
|
||||
description: $t('msg.myAppDescription'),
|
||||
keywords: $t('msg.keywords_base') } ) }}
|
||||
</span>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1,4 +0,0 @@
|
||||
[Dolphin]
|
||||
Timestamp=2019,12,18,17,47,29
|
||||
Version=4
|
||||
ViewMode=1
|
||||
Binary file not shown.
Binary file not shown.
@@ -1,4 +0,0 @@
|
||||
[Dolphin]
|
||||
Timestamp=2019,12,18,17,56,46
|
||||
Version=4
|
||||
ViewMode=1
|
||||
Binary file not shown.
Binary file not shown.
249
yarn.lock
249
yarn.lock
@@ -1130,10 +1130,10 @@
|
||||
promise-limit "^2.5.0"
|
||||
puppeteer "^1.7.0"
|
||||
|
||||
"@quasar/app@^1.4.2":
|
||||
version "1.4.2"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/app/-/app-1.4.2.tgz#3d350c37c203895fdcf47905fb4abf51c74766e9"
|
||||
integrity sha512-5XlcnvvMxgKDSgGl1WtkXAxY2SWyXB4gQpNld7sYUQcoaLZ3EN7yZc+2JySJBQYqQtBnTheQPe+LSobfzVInrQ==
|
||||
"@quasar/app@^1.4.5":
|
||||
version "1.4.5"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/app/-/app-1.4.5.tgz#e15cbd016125c1592b0cc391513b1c5220d80266"
|
||||
integrity sha512-5AYgasw8HCOpT+89gWdJIyim0zsWw9y7wEYjHeg89I5aNGTJwskrXWV18dX2zLDWXXjd41UI2HbPMXqm/SNPJg==
|
||||
dependencies:
|
||||
"@quasar/babel-preset-app" "1.1.7"
|
||||
"@quasar/fastclick" "1.1.4"
|
||||
@@ -1142,10 +1142,10 @@
|
||||
chalk "3.0.0"
|
||||
chokidar "3.3.1"
|
||||
ci-info "2.0.0"
|
||||
compression-webpack-plugin "3.0.1"
|
||||
compression-webpack-plugin "3.1.0"
|
||||
copy-webpack-plugin "5.1.1"
|
||||
cross-spawn "7.0.1"
|
||||
css-loader "3.4.0"
|
||||
css-loader "3.4.1"
|
||||
cssnano "4.1.10"
|
||||
dot-prop "5.2.0"
|
||||
elementtree "0.1.7"
|
||||
@@ -1158,7 +1158,7 @@
|
||||
html-minifier "4.0.0"
|
||||
html-webpack-plugin "3.2.0"
|
||||
inquirer "7.0.1"
|
||||
isbinaryfile "4.0.2"
|
||||
isbinaryfile "4.0.3"
|
||||
launch-editor-middleware "2.2.1"
|
||||
lodash.debounce "4.0.8"
|
||||
lodash.template "4.5.0"
|
||||
@@ -1166,7 +1166,7 @@
|
||||
log-update "3.3.0"
|
||||
lru-cache "5.1.1"
|
||||
memory-fs "0.5.0"
|
||||
mini-css-extract-plugin "^0.8.1"
|
||||
mini-css-extract-plugin "^0.9.0"
|
||||
minimist "1.2.0"
|
||||
ms "2.1.2"
|
||||
node-loader "0.6.0"
|
||||
@@ -1179,11 +1179,11 @@
|
||||
postcss-safe-parser "4.0.1"
|
||||
register-service-worker "1.6.2"
|
||||
sass-loader "8.0.0"
|
||||
semver "7.1.0"
|
||||
semver "7.1.1"
|
||||
strip-ansi "6.0.0"
|
||||
stylus "0.54.7"
|
||||
stylus-loader "3.0.2"
|
||||
terser-webpack-plugin "2.3.1"
|
||||
terser-webpack-plugin "2.3.2"
|
||||
url-loader "3.0.0"
|
||||
vue "2.6.11"
|
||||
vue-loader "15.8.3"
|
||||
@@ -1192,10 +1192,10 @@
|
||||
vue-style-loader "4.1.2"
|
||||
vue-template-compiler "2.6.11"
|
||||
vuex "3.1.2"
|
||||
webpack "4.41.3"
|
||||
webpack "4.41.5"
|
||||
webpack-bundle-analyzer "3.6.0"
|
||||
webpack-chain "6.2.0"
|
||||
webpack-dev-server "3.9.0"
|
||||
webpack-chain "6.3.0"
|
||||
webpack-dev-server "3.10.1"
|
||||
webpack-merge "4.2.2"
|
||||
webpack-node-externals "1.7.2"
|
||||
workbox-webpack-plugin "4.3.1"
|
||||
@@ -1225,36 +1225,36 @@
|
||||
babel-plugin-module-resolver "^3.2.0"
|
||||
babel-plugin-transform-imports "^1.0.0"
|
||||
|
||||
"@quasar/extras@^1.3.3":
|
||||
version "1.3.3"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/extras/-/extras-1.3.3.tgz#4eade1e9ad4087ec05bee676d2e2cfb5c30c1810"
|
||||
integrity sha512-xRXoIl0ZtRjQbTt6iLsvLMMOy8nyroeh2bahDlQmF14dkIU+gKQqKH7pMyn5as9xJq+Vubyw6957rbyasa8WOQ==
|
||||
"@quasar/extras@^1.4.0":
|
||||
version "1.4.0"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/extras/-/extras-1.4.0.tgz#e273e0610f4f22482ac49934ce4426260c08e49d"
|
||||
integrity sha512-ouhk4dWkPYWCjBZU+xN9/55O3Bszn1MDpFSFCtcGQXVe6VrmIvE/wE09YD+cp4PZdzsQZZiiTftziyoCzdy2Qg==
|
||||
|
||||
"@quasar/fastclick@1.1.4":
|
||||
version "1.1.4"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/fastclick/-/fastclick-1.1.4.tgz#21ed3e9a4387dcb43022a08af4ef08a5f1abf159"
|
||||
integrity sha512-i9wbyV4iT+v4KhtHJynUFhH5LiEPvAEgSnwMqPN4hf/8uRe82nDl5qP5agrp2el1h0HzyBpbvHaW7NB0BPrtvA==
|
||||
|
||||
"@quasar/quasar-app-extension-qcalendar@^1.0.0":
|
||||
version "1.3.9"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/quasar-app-extension-qcalendar/-/quasar-app-extension-qcalendar-1.3.9.tgz#d4cba1054f23c8aea7a75fb9fedccf4a7372da63"
|
||||
integrity sha512-hTtBD6rn+zScoXOsXLWcoLCJ63fsxTgtgD30DdlObv8lzjgRH0HHDnHN4E4Sx1BIAKr42jRDsI5mXXNB7XVA1A==
|
||||
"@quasar/quasar-app-extension-qcalendar@^1.3.13":
|
||||
version "1.3.13"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/quasar-app-extension-qcalendar/-/quasar-app-extension-qcalendar-1.3.13.tgz#0823e0cd5670b53c8c5ec86597f8902f8f9fc6bd"
|
||||
integrity sha512-t6KGIMefSoc2Pw0EMklxLAogoRQshprZL5tQeShzb8KpPRnbiHXBDc9SRBZIqnJAKeslz6cFXMEaRgpt1r8L6Q==
|
||||
dependencies:
|
||||
"@quasar/quasar-ui-qcalendar" "^1.3.9"
|
||||
"@quasar/quasar-ui-qcalendar" "^1.3.13"
|
||||
|
||||
"@quasar/quasar-app-extension-qmediaplayer@^1.0.16":
|
||||
version "1.0.16"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/quasar-app-extension-qmediaplayer/-/quasar-app-extension-qmediaplayer-1.0.16.tgz#a3bcfce887b03880db8a4c481a8db94d66bf0bda"
|
||||
integrity sha512-RkTTph8aah3C+KjnZetOuCCe0+DxhNatO87WEvGZ/XDZpbwklPgQzVlPYMO0TIRbiKpmVNrBgOyRuf3TUHr2VA==
|
||||
"@quasar/quasar-app-extension-qmediaplayer@^1.0.17":
|
||||
version "1.0.17"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/quasar-app-extension-qmediaplayer/-/quasar-app-extension-qmediaplayer-1.0.17.tgz#3450c9ec2c7cbda1e2ea77b65efdf1854dd99181"
|
||||
integrity sha512-r5DKJEKc7y98m8Ftlt0+/eti3oX1yQ3Xtwkk8JWuz1vkm13KkHeKwpFyB6HUeOI0LpVNeFuAT9vmoIKIwDigAA==
|
||||
dependencies:
|
||||
"@quasar/quasar-ui-qmediaplayer" "^1.0.16"
|
||||
"@quasar/quasar-ui-qmediaplayer" "^1.0.17"
|
||||
|
||||
"@quasar/quasar-app-extension-qscroller@^1.0.4":
|
||||
version "1.0.4"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/quasar-app-extension-qscroller/-/quasar-app-extension-qscroller-1.0.4.tgz#89e590080b1495c92b9e9028be67fbb02f7c1078"
|
||||
integrity sha512-1ld3sjsnwTp/G1qY3z/YubjgNFz4v9bPuksKUrTqMnsfwHOBCngzvgFwrsqXgb7kqYzeYSoVikQhJGyVKBXHWA==
|
||||
"@quasar/quasar-app-extension-qscroller@^1.0.5":
|
||||
version "1.0.5"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/quasar-app-extension-qscroller/-/quasar-app-extension-qscroller-1.0.5.tgz#b576725262d0fb1647e13f559ece1f9e7d858917"
|
||||
integrity sha512-3u7f/ifUPg/pK/HVfS9ry5ZdcJxeZI5kwkUtaETs/bJCaZC21fBx64OC1WGaLuB948g6apuBL4L83nEwAsaATA==
|
||||
dependencies:
|
||||
"@quasar/quasar-ui-qscroller" "^1.0.4"
|
||||
"@quasar/quasar-ui-qscroller" "^1.0.5"
|
||||
|
||||
"@quasar/quasar-app-extension-typescript@^1.0.0-alpha.11":
|
||||
version "1.0.0-beta.2"
|
||||
@@ -1269,27 +1269,27 @@
|
||||
vue-property-decorator "^7.3.0"
|
||||
vue-template-compiler "^2.6.7"
|
||||
|
||||
"@quasar/quasar-ui-qcalendar@^1.3.9":
|
||||
version "1.3.9"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/quasar-ui-qcalendar/-/quasar-ui-qcalendar-1.3.9.tgz#a64713f117d3229f07c13d86ff0335f309d98fdd"
|
||||
integrity sha512-ZYDytaGG01jVaKXIhgI1yCe2nTYeKDk/Zxc4YB3KY/sXUJu2i2iA+xdZ2M+tuCZUWbzNBkOgE+V5nPzUUrJmww==
|
||||
"@quasar/quasar-ui-qcalendar@^1.3.13":
|
||||
version "1.3.13"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/quasar-ui-qcalendar/-/quasar-ui-qcalendar-1.3.13.tgz#4d755db7b1eb7a49c161bddf59c2b6cc112eb931"
|
||||
integrity sha512-lfcl/6tmH6C28hGNe5n+P9lwBPBmeLnKh4ec9MOmli9ePrUIqn2LJJ5rwNwRUJakhtL/RXMJcLV5mvZEl2dT4A==
|
||||
dependencies:
|
||||
q-colorize-mixin "^1.0.5"
|
||||
q-theme-mixin "^1.0.0"
|
||||
q-colorize-mixin "^1.0.6"
|
||||
q-theme-mixin "^1.0.1"
|
||||
|
||||
"@quasar/quasar-ui-qmediaplayer@^1.0.16":
|
||||
version "1.0.16"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/quasar-ui-qmediaplayer/-/quasar-ui-qmediaplayer-1.0.16.tgz#bcfc0c2b0a6684040e421baafc299576607cf8a8"
|
||||
integrity sha512-InZc9JxRsQdEM9QgjnwFVjtzmeiCVlJL/80NbR2thkM/4lHxHx9rmyHtoxQOKY7XBECvqVsq+pKlW8Lp0qWc9w==
|
||||
"@quasar/quasar-ui-qmediaplayer@^1.0.17":
|
||||
version "1.0.17"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/quasar-ui-qmediaplayer/-/quasar-ui-qmediaplayer-1.0.17.tgz#53243bf6a6b58d5f9868b7a1ab4d4824bf03d13e"
|
||||
integrity sha512-5Q+AL4VyW1iPm6KUn7eRVmOzFmnIxuiSh36wRn3d8O4qWW4oy9F88ep7ZkFiyso+7p5L2dfOIYMW6VjQdNnMag==
|
||||
dependencies:
|
||||
q-colorize-mixin "^1.0.6"
|
||||
|
||||
"@quasar/quasar-ui-qscroller@^1.0.4":
|
||||
version "1.0.4"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/quasar-ui-qscroller/-/quasar-ui-qscroller-1.0.4.tgz#d7922b6b64dd7c208b08b9811719c0013bfddcf3"
|
||||
integrity sha512-uVcIUA53P+psyp0EqPx4sO4g8fWEne1JxqGywm39hJZGFtblIPHcNmv807EI9Ch1882JHnKNL4lPtqUPvRJwEA==
|
||||
"@quasar/quasar-ui-qscroller@^1.0.5":
|
||||
version "1.0.5"
|
||||
resolved "https://registry.yarnpkg.com/@quasar/quasar-ui-qscroller/-/quasar-ui-qscroller-1.0.5.tgz#c03d8d518f9488e683addd14c513dfeb560dc221"
|
||||
integrity sha512-eECIPhIZW00PoSvrZWOSlvdIZ3ZmKNE/5Vl4TJ4T8XaXZ78QmsnuVcPatbPF1z10WU69onTI7J/r5yi32QvmjA==
|
||||
dependencies:
|
||||
q-colorize-mixin "^1.0.5"
|
||||
q-colorize-mixin "^1.0.6"
|
||||
|
||||
"@soda/friendly-errors-webpack-plugin@^1.7.1":
|
||||
version "1.7.1"
|
||||
@@ -3807,10 +3807,10 @@ compressible@~2.0.16:
|
||||
dependencies:
|
||||
mime-db ">= 1.40.0 < 2"
|
||||
|
||||
compression-webpack-plugin@3.0.1:
|
||||
version "3.0.1"
|
||||
resolved "https://registry.yarnpkg.com/compression-webpack-plugin/-/compression-webpack-plugin-3.0.1.tgz#be7a343e6dfbccbd64a77c5fbe29627d140fc321"
|
||||
integrity sha512-FOwoBVzDiwSdJDnZTKXDpAjJU90k8SbChgxnoiYwTo15xjIDJkSC8wFKuc13DymXjgasPEqzS5+2RUgSKXdKKA==
|
||||
compression-webpack-plugin@3.1.0:
|
||||
version "3.1.0"
|
||||
resolved "https://registry.yarnpkg.com/compression-webpack-plugin/-/compression-webpack-plugin-3.1.0.tgz#9f510172a7b5fae5aad3b670652e8bd7997aeeca"
|
||||
integrity sha512-iqTHj3rADN4yHwXMBrQa/xrncex/uEQy8QHlaTKxGchT/hC0SdlJlmL/5eRqffmWq2ep0/Romw6Ld39JjTR/ug==
|
||||
dependencies:
|
||||
cacache "^13.0.1"
|
||||
find-cache-dir "^3.0.0"
|
||||
@@ -4159,10 +4159,10 @@ css-declaration-sorter@^4.0.1:
|
||||
postcss "^7.0.1"
|
||||
timsort "^0.3.0"
|
||||
|
||||
css-loader@3.4.0:
|
||||
version "3.4.0"
|
||||
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.4.0.tgz#9fb263436783117a41d014e45e8eaeba54dd6670"
|
||||
integrity sha512-JornYo4RAXl1Mzt0lOSVPmArzAMV3rGY2VuwtaDc732WTWjdwTaeS19nCGWMcSCf305Q396lhhDAJEWWM0SgPQ==
|
||||
css-loader@3.4.1:
|
||||
version "3.4.1"
|
||||
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.4.1.tgz#dfb7968aa9bffb26bd20375afdffe77d5a234b77"
|
||||
integrity sha512-+ybmv7sVxxNEenQhkifQDvny/1iNQM7YooJbSfVUdQQvisyg1aKIqgGjCjoFSyVLJMp17z9rfZFQaR5HGHcMbw==
|
||||
dependencies:
|
||||
camelcase "^5.3.1"
|
||||
cssesc "^3.0.0"
|
||||
@@ -7683,10 +7683,10 @@ isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
|
||||
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
|
||||
integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
|
||||
|
||||
isbinaryfile@4.0.2:
|
||||
version "4.0.2"
|
||||
resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.2.tgz#bfc45642da645681c610cca831022e30af426488"
|
||||
integrity sha512-C3FSxJdNrEr2F4z6uFtNzECDM5hXk+46fxaa+cwBe5/XrWSmzdG8DDgyjfX6/NRdBB21q2JXuRAzPCUs+fclnQ==
|
||||
isbinaryfile@4.0.3:
|
||||
version "4.0.3"
|
||||
resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.3.tgz#1bcca23bf4b2a95d209ec1e9da23b4d75e50fa2d"
|
||||
integrity sha512-GQ9Gjhp3AsEbo8/L/pA+MYl/c4hRm5O/+uCkF4LMx1a556Wh4/d75H13qu9LldmhU4yKnlfNKBmEcCaze3b2Gw==
|
||||
|
||||
isemail@3.x.x:
|
||||
version "3.2.0"
|
||||
@@ -9322,7 +9322,7 @@ log-update@^1.0.2:
|
||||
ansi-escapes "^1.0.0"
|
||||
cli-cursor "^1.0.2"
|
||||
|
||||
loglevel@^1.6.4:
|
||||
loglevel@^1.6.4, loglevel@^1.6.6:
|
||||
version "1.6.6"
|
||||
resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.6.tgz#0ee6300cc058db6b3551fa1c4bf73b83bb771312"
|
||||
integrity sha512-Sgr5lbboAUBo3eXCSPL4/KoVz3ROKquOjcctxmHIt+vol2DrqTQe3SwkKKuYhEiWB5kYa13YyopJ69deJ1irzQ==
|
||||
@@ -9647,7 +9647,7 @@ mimic-fn@^2.0.0, mimic-fn@^2.1.0:
|
||||
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
|
||||
integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
|
||||
|
||||
mini-css-extract-plugin@^0.8.0, mini-css-extract-plugin@^0.8.1:
|
||||
mini-css-extract-plugin@^0.8.0:
|
||||
version "0.8.2"
|
||||
resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.8.2.tgz#a875e169beb27c88af77dd962771c9eedc3da161"
|
||||
integrity sha512-a3Y4of27Wz+mqK3qrcd3VhYz6cU0iW5x3Sgvqzbj+XmlrSizmvu8QQMl5oMYJjgHOC4iyt+w7l4umP+dQeW3bw==
|
||||
@@ -9657,6 +9657,16 @@ mini-css-extract-plugin@^0.8.0, mini-css-extract-plugin@^0.8.1:
|
||||
schema-utils "^1.0.0"
|
||||
webpack-sources "^1.1.0"
|
||||
|
||||
mini-css-extract-plugin@^0.9.0:
|
||||
version "0.9.0"
|
||||
resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz#47f2cf07aa165ab35733b1fc97d4c46c0564339e"
|
||||
integrity sha512-lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A==
|
||||
dependencies:
|
||||
loader-utils "^1.1.0"
|
||||
normalize-url "1.9.1"
|
||||
schema-utils "^1.0.0"
|
||||
webpack-sources "^1.1.0"
|
||||
|
||||
minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
|
||||
@@ -11981,20 +11991,15 @@ puppeteer@^1.7.0:
|
||||
rimraf "^2.6.1"
|
||||
ws "^6.1.0"
|
||||
|
||||
q-colorize-mixin@^1.0.5:
|
||||
version "1.0.5"
|
||||
resolved "https://registry.yarnpkg.com/q-colorize-mixin/-/q-colorize-mixin-1.0.5.tgz#96104fc520aa0d8010c92540c10beeeca8ab4fb1"
|
||||
integrity sha512-9Q79S2yzFeivbV/ilpBX/0+uCNQp64MrJgy+EQSHq1Aru5MBgX0OlJR5iZT3AHZ5luzKbKwHBc+ZfqcE3zQYqw==
|
||||
|
||||
q-colorize-mixin@^1.0.6:
|
||||
version "1.0.6"
|
||||
resolved "https://registry.yarnpkg.com/q-colorize-mixin/-/q-colorize-mixin-1.0.6.tgz#7430062989a5d5d5e0ade4380942a41b2250f8f9"
|
||||
integrity sha512-P7EtExeYuLX+imWGHU36nzUKjZPgzHkAjqXdtsOmbDtxys53mHydwcKB7hzkmnjZtfHSa0vg61Mu2u7kJCmX8Q==
|
||||
|
||||
q-theme-mixin@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/q-theme-mixin/-/q-theme-mixin-1.0.0.tgz#3ee4db2101b787dcf49c02f1d8a9a54d483a551d"
|
||||
integrity sha512-ShXH255+KMYwlU7FygmzxEvi7xwcDO9DUkWQM35LG57Js5fqLPi8IS7ELoyMgcZMi7t4kOpL5I/j5+NQNw7tnw==
|
||||
q-theme-mixin@^1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/q-theme-mixin/-/q-theme-mixin-1.0.1.tgz#472434a724e2e308567dc928ac9f69944a4ec2f6"
|
||||
integrity sha512-rfvSy3p6QY8lgiuGEG+hMu64ovoL+8zcsPIAebL2zOqDGjuetyNIDvr6t8/AxjRMAQj8FaoOp58Z83IkDeUsjg==
|
||||
|
||||
q@^1.1.2:
|
||||
version "1.5.1"
|
||||
@@ -12021,10 +12026,10 @@ quasar-extras@^2.0.8:
|
||||
resolved "https://registry.yarnpkg.com/quasar-extras/-/quasar-extras-2.0.9.tgz#f3274f8cd8e054a76d0b52a2410ccf0cdfb197fd"
|
||||
integrity sha512-ifwaaop0GNuxlcD7Ams0X3f7S49es+2NlR/fI4YAMAOW70ZxTkD4QkAFsVhk7dNPcpPodSOTKAWDOPaO+MqsBg==
|
||||
|
||||
quasar@^1.5.4:
|
||||
version "1.5.9"
|
||||
resolved "https://registry.yarnpkg.com/quasar/-/quasar-1.5.9.tgz#866651eb425911afbbea7176b1d57ba8969f2fee"
|
||||
integrity sha512-QdTiLNCqumBOOkeODZrDmxJY9KjjEEC1Gp4KPM5fRFEpSNvtHF5m68tt5/4mnCrS6V05ZpetYRizmCAnE9kkzw==
|
||||
quasar@^1.7.0:
|
||||
version "1.7.0"
|
||||
resolved "https://registry.yarnpkg.com/quasar/-/quasar-1.7.0.tgz#d0601938620eb072117392724cb4fafc3a0c89f6"
|
||||
integrity sha512-xZ11IEhWzcLfvzeNaz4atZ1TrF4X4Zydw1GbF3U/kPMs3FNzdWRop375VHeau2yXkpKIttWYTb5zcGf1tvGV5A==
|
||||
|
||||
query-string@^4.1.0:
|
||||
version "4.3.4"
|
||||
@@ -12907,10 +12912,10 @@ semver-diff@^2.0.0:
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
|
||||
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
|
||||
|
||||
semver@7.1.0:
|
||||
version "7.1.0"
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-7.1.0.tgz#e5870a302d6929a86a967c346e699e19154e38e0"
|
||||
integrity sha512-4P8Vc43MxQL6UKqSiEnf0jZNYx545R9W1HwXP6p65paPp86AUJiafZ8XG81hAbcldKMCUIbeykUTVYG19LB7Cw==
|
||||
semver@7.1.1:
|
||||
version "7.1.1"
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-7.1.1.tgz#29104598a197d6cbe4733eeecbe968f7b43a9667"
|
||||
integrity sha512-WfuG+fl6eh3eZ2qAf6goB7nhiCd7NPXhmyFxigB/TOkQyeLP8w8GsVehvtGNtnNmyboz4TgeK40B1Kbql/8c5A==
|
||||
|
||||
semver@^6.0.0, semver@^6.2.0, semver@^6.3.0:
|
||||
version "6.3.0"
|
||||
@@ -13815,10 +13820,10 @@ term-size@^1.2.0:
|
||||
dependencies:
|
||||
execa "^0.7.0"
|
||||
|
||||
terser-webpack-plugin@2.3.1:
|
||||
version "2.3.1"
|
||||
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.1.tgz#6a63c27debc15b25ffd2588562ee2eeabdcab923"
|
||||
integrity sha512-dNxivOXmDgZqrGxOttBH6B4xaxT4zNC+Xd+2K8jwGDMK5q2CZI+KZMA1AAnSRT+BTRvuzKsDx+fpxzPAmAMVcA==
|
||||
terser-webpack-plugin@2.3.2:
|
||||
version "2.3.2"
|
||||
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.2.tgz#6d3d1b0590c8f729bfbaeb7fb2528b8b62db4c74"
|
||||
integrity sha512-SmvB/6gtEPv+CJ88MH5zDOsZdKXPS/Uzv2//e90+wM1IHFUhsguPKEILgzqrM1nQ4acRXN/SV4Obr55SXC+0oA==
|
||||
dependencies:
|
||||
cacache "^13.0.1"
|
||||
find-cache-dir "^3.2.0"
|
||||
@@ -14869,10 +14874,10 @@ webpack-bundle-analyzer@3.6.0, webpack-bundle-analyzer@^3.3.0:
|
||||
opener "^1.5.1"
|
||||
ws "^6.0.0"
|
||||
|
||||
webpack-chain@6.2.0:
|
||||
version "6.2.0"
|
||||
resolved "https://registry.yarnpkg.com/webpack-chain/-/webpack-chain-6.2.0.tgz#bcea7b0ad5feae6845d70e6fd7a048953f8ae77c"
|
||||
integrity sha512-Kt/TCt6p4sL8YJ49m6/mMkU1gkGJUMu/6yevWbWnaHYTdKc7U6hNAm0d9RSdLIN28CGonmYD5FkABqE1UuNTTw==
|
||||
webpack-chain@6.3.0:
|
||||
version "6.3.0"
|
||||
resolved "https://registry.yarnpkg.com/webpack-chain/-/webpack-chain-6.3.0.tgz#a6098eb89a43dbe6533538f4647b283b99bf66ed"
|
||||
integrity sha512-Kri8p/JrfcQtBRghyxKN8r9E1mbxzywQPAnQbyvXN+rtSa8au1Qb7JOoyAGfEBFkOvU3XH4JeGd57CHa0QXfMQ==
|
||||
dependencies:
|
||||
deepmerge "^1.5.2"
|
||||
javascript-stringify "^2.0.1"
|
||||
@@ -14913,7 +14918,46 @@ webpack-dev-middleware@^3.2.0, webpack-dev-middleware@^3.7.2:
|
||||
range-parser "^1.2.1"
|
||||
webpack-log "^2.0.0"
|
||||
|
||||
webpack-dev-server@3.9.0, webpack-dev-server@^3.4.1:
|
||||
webpack-dev-server@3.10.1:
|
||||
version "3.10.1"
|
||||
resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.10.1.tgz#1ff3e5cccf8e0897aa3f5909c654e623f69b1c0e"
|
||||
integrity sha512-AGG4+XrrXn4rbZUueyNrQgO4KGnol+0wm3MPdqGLmmA+NofZl3blZQKxZ9BND6RDNuvAK9OMYClhjOSnxpWRoA==
|
||||
dependencies:
|
||||
ansi-html "0.0.7"
|
||||
bonjour "^3.5.0"
|
||||
chokidar "^2.1.8"
|
||||
compression "^1.7.4"
|
||||
connect-history-api-fallback "^1.6.0"
|
||||
debug "^4.1.1"
|
||||
del "^4.1.1"
|
||||
express "^4.17.1"
|
||||
html-entities "^1.2.1"
|
||||
http-proxy-middleware "0.19.1"
|
||||
import-local "^2.0.0"
|
||||
internal-ip "^4.3.0"
|
||||
ip "^1.1.5"
|
||||
is-absolute-url "^3.0.3"
|
||||
killable "^1.0.1"
|
||||
loglevel "^1.6.6"
|
||||
opn "^5.5.0"
|
||||
p-retry "^3.0.1"
|
||||
portfinder "^1.0.25"
|
||||
schema-utils "^1.0.0"
|
||||
selfsigned "^1.10.7"
|
||||
semver "^6.3.0"
|
||||
serve-index "^1.9.1"
|
||||
sockjs "0.3.19"
|
||||
sockjs-client "1.4.0"
|
||||
spdy "^4.0.1"
|
||||
strip-ansi "^3.0.1"
|
||||
supports-color "^6.1.0"
|
||||
url "^0.11.0"
|
||||
webpack-dev-middleware "^3.7.2"
|
||||
webpack-log "^2.0.0"
|
||||
ws "^6.2.1"
|
||||
yargs "12.0.5"
|
||||
|
||||
webpack-dev-server@^3.4.1:
|
||||
version "3.9.0"
|
||||
resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.9.0.tgz#27c3b5d0f6b6677c4304465ac817623c8b27b89c"
|
||||
integrity sha512-E6uQ4kRrTX9URN9s/lIbqTAztwEPdvzVrcmHE8EQ9YnuT9J8Es5Wrd8n9BKg1a0oZ5EgEke/EQFgUsp18dSTBw==
|
||||
@@ -14990,7 +15034,36 @@ webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-
|
||||
source-list-map "^2.0.0"
|
||||
source-map "~0.6.1"
|
||||
|
||||
webpack@4.41.3, webpack@^4.0.0, webpack@^4.29.6:
|
||||
webpack@4.41.5:
|
||||
version "4.41.5"
|
||||
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.41.5.tgz#3210f1886bce5310e62bb97204d18c263341b77c"
|
||||
integrity sha512-wp0Co4vpyumnp3KlkmpM5LWuzvZYayDwM2n17EHFr4qxBBbRokC7DJawPJC7TfSFZ9HZ6GsdH40EBj4UV0nmpw==
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.8.5"
|
||||
"@webassemblyjs/helper-module-context" "1.8.5"
|
||||
"@webassemblyjs/wasm-edit" "1.8.5"
|
||||
"@webassemblyjs/wasm-parser" "1.8.5"
|
||||
acorn "^6.2.1"
|
||||
ajv "^6.10.2"
|
||||
ajv-keywords "^3.4.1"
|
||||
chrome-trace-event "^1.0.2"
|
||||
enhanced-resolve "^4.1.0"
|
||||
eslint-scope "^4.0.3"
|
||||
json-parse-better-errors "^1.0.2"
|
||||
loader-runner "^2.4.0"
|
||||
loader-utils "^1.2.3"
|
||||
memory-fs "^0.4.1"
|
||||
micromatch "^3.1.10"
|
||||
mkdirp "^0.5.1"
|
||||
neo-async "^2.6.1"
|
||||
node-libs-browser "^2.2.1"
|
||||
schema-utils "^1.0.0"
|
||||
tapable "^1.1.3"
|
||||
terser-webpack-plugin "^1.4.3"
|
||||
watchpack "^1.6.0"
|
||||
webpack-sources "^1.4.1"
|
||||
|
||||
webpack@^4.0.0, webpack@^4.29.6:
|
||||
version "4.41.3"
|
||||
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.41.3.tgz#cb7592c43080337dbc9be9e98fc6478eb3981026"
|
||||
integrity sha512-EcNzP9jGoxpQAXq1VOoTet0ik7/VVU1MovIfcUSAjLowc7GhcQku/sOXALvq5nPpSei2HF6VRhibeJSC3i/Law==
|
||||
|
||||
Reference in New Issue
Block a user