@silexlabs/silex-dashboard 1.0.62 → 1.0.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_site/en/connectors/index.html +2 -3
- package/_site/en/index.html +33 -0
- package/_site/fr/connectors/index.html +2 -3
- package/_site/fr/index.html +33 -0
- package/_site/js/vue.cjs.js +1 -1
- package/_site/js/vue.cjs.prod.js +1 -1
- package/_site/js/vue.esm-browser.js +20 -13
- package/_site/js/vue.esm-browser.prod.js +2 -2
- package/_site/js/vue.esm-bundler.js +1 -1
- package/_site/js/vue.global.js +20 -13
- package/_site/js/vue.global.prod.js +3 -3
- package/_site/js/vue.runtime.esm-browser.js +19 -12
- package/_site/js/vue.runtime.esm-browser.prod.js +2 -2
- package/_site/js/vue.runtime.esm-bundler.js +1 -1
- package/_site/js/vue.runtime.global.js +19 -12
- package/_site/js/vue.runtime.global.prod.js +2 -2
- package/package.json +3 -3
- package/templates/connectors-en.html +28 -29
- package/templates/connectors-fr.html +28 -29
- package/templates/websites-en.html +252 -209
- package/templates/websites-fr.html +252 -209
|
@@ -217,7 +217,6 @@ const App = {
|
|
|
217
217
|
},
|
|
218
218
|
|
|
219
219
|
getHref(connector) {
|
|
220
|
-
console.log(connector, connector.oauthUrl)
|
|
221
220
|
if(connector.isLoggedIn) return '/'
|
|
222
221
|
if(connector.oauthUrl) return connector.oauthUrl
|
|
223
222
|
return '/api/connector/login/?type=STORAGE&connectorId=' + connector.connectorId
|
|
@@ -236,7 +235,7 @@ const App = {
|
|
|
236
235
|
this.loading = true
|
|
237
236
|
const connectors = await connectorList({ type: ConnectorType.STORAGE })
|
|
238
237
|
this.connectors = connectors
|
|
239
|
-
this.connectors = [{"connectorId":"gitlab","type":"STORAGE","displayName":"GitLab.com","icon":"/assets/gitlab.png","disableLogout":false,"isLoggedIn":true,"oauthUrl":"https://gitlab.com/oauth/authorize?client_id=55cb55ab5fd12ab93883378513212d0c85833ef1f4084375f973618e938af107&redirect_uri=https%3A%2F%2Fv3.silex.me%2Fapi%2Fconnector%2Flogin%2Fcallback%3FconnectorId%3Dgitlab%26type%3DSTORAGE&response_type=code&state=6z1oajr7s9q75vl47i5065&scope=api&code_challenge=APGn3qQ0O5zDzkLelHIMtjKMo2WmFJj4XxFqAd3bQJ4&code_challenge_method=S256","color":"#2B1B63","background":"rgba(252, 109, 38, 0.2)"},{"connectorId":"gitlab2","type":"STORAGE","displayName":"Framagit","icon":"/assets/gitlab.png","disableLogout":false,"isLoggedIn":false,"oauthUrl":"https://framagit.org/oauth/authorize?client_id=13484ab1c802362f0292cbf637fd348a3bca46dfb2c2466a361ab89a799a8925&redirect_uri=https%3A%2F%2Fv3.silex.me%2Fapi%2Fconnector%2Flogin%2Fcallback%3FconnectorId%3Dgitlab2%26type%3DSTORAGE&response_type=code&state=1mzpmxpuymoy2ss07wv01f&scope=api&code_challenge=dkwe8iS7dOH8Cmm5YVIv39huEkLCJ1xx276h1jok7oQ&code_challenge_method=S256","color":"#2B1B63","background":"rgba(252, 109, 38, 0.2)"},{"connectorId":"ftp","type":"STORAGE","displayName":"Ftp","icon":"/assets/ftp.png","disableLogout":false,"isLoggedIn":false,"oauthUrl":null,"color":"#ffffff","background":"#0066CC"}]
|
|
238
|
+
// this.connectors = [{"connectorId":"gitlab","type":"STORAGE","displayName":"GitLab.com","icon":"/assets/gitlab.png","disableLogout":false,"isLoggedIn":true,"oauthUrl":"https://gitlab.com/oauth/authorize?client_id=55cb55ab5fd12ab93883378513212d0c85833ef1f4084375f973618e938af107&redirect_uri=https%3A%2F%2Fv3.silex.me%2Fapi%2Fconnector%2Flogin%2Fcallback%3FconnectorId%3Dgitlab%26type%3DSTORAGE&response_type=code&state=6z1oajr7s9q75vl47i5065&scope=api&code_challenge=APGn3qQ0O5zDzkLelHIMtjKMo2WmFJj4XxFqAd3bQJ4&code_challenge_method=S256","color":"#2B1B63","background":"rgba(252, 109, 38, 0.2)"},{"connectorId":"gitlab2","type":"STORAGE","displayName":"Framagit","icon":"/assets/gitlab.png","disableLogout":false,"isLoggedIn":false,"oauthUrl":"https://framagit.org/oauth/authorize?client_id=13484ab1c802362f0292cbf637fd348a3bca46dfb2c2466a361ab89a799a8925&redirect_uri=https%3A%2F%2Fv3.silex.me%2Fapi%2Fconnector%2Flogin%2Fcallback%3FconnectorId%3Dgitlab2%26type%3DSTORAGE&response_type=code&state=1mzpmxpuymoy2ss07wv01f&scope=api&code_challenge=dkwe8iS7dOH8Cmm5YVIv39huEkLCJ1xx276h1jok7oQ&code_challenge_method=S256","color":"#2B1B63","background":"rgba(252, 109, 38, 0.2)"},{"connectorId":"ftp","type":"STORAGE","displayName":"Ftp","icon":"/assets/ftp.png","disableLogout":false,"isLoggedIn":false,"oauthUrl":null,"color":"#ffffff","background":"#0066CC"}]
|
|
240
239
|
this.loading = false
|
|
241
240
|
} catch (error) {
|
|
242
241
|
this.loading = false
|
|
@@ -277,7 +276,7 @@ setTimeout(() => {
|
|
|
277
276
|
<link rel="icon" href="/assets/favicon-32x32.png" />
|
|
278
277
|
<meta name="og:title" property="og:title" content="Silex Dashboard"/>
|
|
279
278
|
<link href="https://fonts.googleapis.com" rel="preconnect" ><link href="https://fonts.gstatic.com" rel="preconnect" crossorigin ><link href="https://fonts.googleapis.com/css?family=Ubuntu&display=swap" rel="stylesheet" ></head>
|
|
280
|
-
<body id="i2hcfw" class="body app before-js"><A id="ixzhcr" href="/" class="button button-bar__item--secondary">< Back</A><div id="imawg3" class="bg-silex-purpel"><div id="imgx81" style="min-height:100vh;display:flex;justify-content:center;align-items:center;flex-direction:column;" class=""><div id="iikf0s" class="box box_login"><div id="ie0dxn" class="text-centered"><img id="ior0hl" src="/assets/logo-silex.svg"/><p id="it2175" style="margin:15px 0px 0px 0px;font-size:1rem;" class="subtitle-16">Please login to continue</p></div><h3 id="iqc1xf" style="display:none;" class="margin-top">Recommended and free</h3><div id="in62y2"><div id="isqe61"
|
|
279
|
+
<body id="i2hcfw" class="body app before-js"><A id="ixzhcr" href="/" class="button button-bar__item--secondary">< Back</A><div id="imawg3" class="bg-silex-purpel"><div id="imgx81" style="min-height:100vh;display:flex;justify-content:center;align-items:center;flex-direction:column;" class=""><div id="iikf0s" class="box box_login"><div id="ie0dxn" class="text-centered"><img id="ior0hl" src="/assets/logo-silex.svg"/><p id="it2175" style="margin:15px 0px 0px 0px;font-size:1rem;" class="subtitle-16">Please login to continue</p></div><h3 id="iqc1xf" style="display:none;" class="margin-top">Recommended and free</h3><div id="in62y2"><div id="isqe61" class="full-width margin-30" v-for="(connector, index) in connectors.slice(0, 1)"><a id="i44y9w" href="https://" class="connector__card" :href="getHref(connector)" data-remove-href="true"><div id="io3lid" class="button-bar__item__icon" :style="getConnectorStyle(connector)"></div><div id="i87asw" class="connector__description" v-text="connector.displayName">Login with <span href="" id="i0tt68">Name</span><br/></div></a></div></div><DETAILS id="ihn6fj"><summary id="i8w75b" class="margin-30">Advanced users</summary><div id="ibi9qh" class="full-width" v-for="(connector, index) in connectors.slice(1)"><a href="https://" class="connector__card" :href="getHref(connector)" data-remove-href="true"><div class="button-bar__item__icon" :style="getConnectorStyle(connector)"></div><div class="connector__description" v-text="connector.displayName">Login with <span href="">Name</span><br/></div></a></div></DETAILS><div id="i3cney" class="button-bar"><a id="iacshy" class="button big-button connector__card" v-if="!loading" :key="index" :style="{ backgroundColor: connector.background, color: connector.color }" v-for="(connector, index) in connectors" v-on-click="openLogin(connector)"><div id="iiwn36"><div class="button-bar__item__icon" :style="`background: url('${connector.icon}'); background-repeat: no-repeat; background-size: contain;`"></div><div id="if4gvb" class="" v-text="connector.displayName">Name<br/></div></div><div id="isndui">This connector is about blablabla<br/></div></a></div><div id="ijflxq" style="font-size:0.85rem;text-align:left;margin:30px 0px 0px 0px;" class="text-centered">Do you need help? Check <a href="https://docs.silex.me/en/user/login" target="_blank">the documentation</a>. <br><br> By logging in, you agree to the <a href="https://docs.silex.me/en/terms" target="_blank">terms of use</a> and the <a href="https://docs.silex.me/en/security" target="_blank">privacy policy</a>.</div></div><div id="i9msnk" style="padding:10px;display:inline;" class="text-white top-space-20" v-if="error" v-text="message" :test="message">Insert your text here</div><div id="i6akll" style="padding:10px;display:inline;" class="button button--tertiary text-centered" v-if="error" v-on:click="logout()">Logout</div></div></div><FOOTER class="footer">
|
|
281
280
|
|
|
282
281
|
<div id="iprzeh" style="min-height:100px;" class="footer__column"><h3 href="" class="footer__item">Social & community</h3>
|
|
283
282
|
|
package/_site/en/index.html
CHANGED
|
@@ -553,6 +553,39 @@ window.addEventListener('load', function() {
|
|
|
553
553
|
<a href="https://short.silex.me/contribute" class="footer__item" target="_blank">Contribute</a></div>
|
|
554
554
|
<div id="ilgsqu-2-2-2-2" class="footer__column"><h3 href="" class="footer__item">Articles and reviews</h3>
|
|
555
555
|
|
|
556
|
+
<a href="https://short.silex.me/alternatives" class="footer__item" target="_blank">Silex alternatives</a>
|
|
557
|
+
<a href="https://short.silex.me/reviews" class="footer__item" target="_blank">Silex reviews</a>
|
|
558
|
+
<a href="https://short.silex.me/press" class="footer__item" target="_blank">Silex in the press</a></div></FOOTER><HEADER class="menu-bar"><A href="/"><img src="/assets/favicon-32x32.png" id="iel80b-2" class="nav__logo"/></A><NAV id="in0357-2-2-2-2-2-2-2" class="nav">
|
|
559
|
+
|
|
560
|
+
<a href="/" class="nav__item uppercase fx-flash nav_item--active" target="">Sites</a>
|
|
561
|
+
<a href="http://docs.silex.me/" class="nav__item uppercase fx-flash nav_item--active" target="_blank">Docs</a>
|
|
562
|
+
<a href="https://www.silex.me/" class="nav__item uppercase fx-flash nav_item--active" target="_blank">About</a>
|
|
563
|
+
<a href="https://community.silex.me/" class="nav__item uppercase fx-flash nav_item--active" target="_blank">Community</a>
|
|
564
|
+
<a href="https://mail-list.silexlabs.org/subscription/cemnfkaVrK?locale=en-US&source=silex-dashboard" class="nav__item uppercase fx-flash nav_item--active" target="_blank">News</a></NAV>
|
|
565
|
+
|
|
566
|
+
<div class="lang"><a href="/en" class="lang__item nav__item uppercase">EN</a></div>
|
|
567
|
+
<div class="lang"><a href="/fr" class="lang__item nav__item uppercase">FR</a></div><div class="user__wrapper pointer"><div class="user-icon__wrapper"><div class="user-icon__image"></div></div><div><div id="ir10ge-2-2-2-2-2-2-2" class="button button--tertiary text-centered">Logout</div></div></div></HEADER><FOOTER class="footer">
|
|
568
|
+
|
|
569
|
+
<div id="ilgsqu-2-2-2-2-2" class="footer__column"><h3 href="" class="footer__item">Social & community</h3>
|
|
570
|
+
|
|
571
|
+
<a href="https://www.silex.me/" class="footer__item" target="_blank">About Silex, official website</a>
|
|
572
|
+
<a href="mailto:contact+silex-dashboard-footer@silex.me" class="footer__item" target="">Email the team</a>
|
|
573
|
+
<a href="https://short.silex.me/sponsors" class="footer__item" target="">Sponsors</a>
|
|
574
|
+
<a href="https://short.silex.me/donate" class="footer__item" target="">Donate</a>
|
|
575
|
+
<a href="https://short.silex.me/community" class="footer__item" target="_blank">Community forum</a>
|
|
576
|
+
<a href="https://news.silex.me/forms/nfrm_weLJnLY5" class="footer__item" target="_blank">Newsletter</a>
|
|
577
|
+
<a href="https://events.silex.me/" class="footer__item" target="_blank">Meetups/ Events</a>
|
|
578
|
+
<a href="https://short.silex.me/mastodon" class="footer__item" target="_blank">Mastodon</a>
|
|
579
|
+
<a href="https://short.silex.me/chat" class="footer__item" target="">Chat</a></div>
|
|
580
|
+
<div id="ilgsqu-2-2-2-2-2" class="footer__column"><h3 href="" class="footer__item">Resources</h3>
|
|
581
|
+
|
|
582
|
+
<a href="https://short.silex.me/code" class="footer__item" target="_blank">Source code</a>
|
|
583
|
+
<a href="http://docs.silex.me/" class="footer__item" target="_blank">Documentation</a>
|
|
584
|
+
<a href="https://video.silex.me/my-library/video-playlists" class="footer__item" target="_blank">Videos</a>
|
|
585
|
+
<a href="https://short.silex.me/roadmap" class="footer__item" target="_blank">Roadmap</a>
|
|
586
|
+
<a href="https://short.silex.me/contribute" class="footer__item" target="_blank">Contribute</a></div>
|
|
587
|
+
<div id="ilgsqu-2-2-2-2-2" class="footer__column"><h3 href="" class="footer__item">Articles and reviews</h3>
|
|
588
|
+
|
|
556
589
|
<a href="https://short.silex.me/alternatives" class="footer__item" target="_blank">Silex alternatives</a>
|
|
557
590
|
<a href="https://short.silex.me/reviews" class="footer__item" target="_blank">Silex reviews</a>
|
|
558
591
|
<a href="https://short.silex.me/press" class="footer__item" target="_blank">Silex in the press</a></div></FOOTER></body>
|
|
@@ -217,7 +217,6 @@ const App = {
|
|
|
217
217
|
},
|
|
218
218
|
|
|
219
219
|
getHref(connector) {
|
|
220
|
-
console.log(connector, connector.oauthUrl)
|
|
221
220
|
if(connector.isLoggedIn) return '/'
|
|
222
221
|
if(connector.oauthUrl) return connector.oauthUrl
|
|
223
222
|
return '/api/connector/login/?type=STORAGE&connectorId=' + connector.connectorId
|
|
@@ -236,7 +235,7 @@ const App = {
|
|
|
236
235
|
this.loading = true
|
|
237
236
|
const connectors = await connectorList({ type: ConnectorType.STORAGE })
|
|
238
237
|
this.connectors = connectors
|
|
239
|
-
this.connectors = [{"connectorId":"gitlab","type":"STORAGE","displayName":"GitLab.com","icon":"/assets/gitlab.png","disableLogout":false,"isLoggedIn":true,"oauthUrl":"https://gitlab.com/oauth/authorize?client_id=55cb55ab5fd12ab93883378513212d0c85833ef1f4084375f973618e938af107&redirect_uri=https%3A%2F%2Fv3.silex.me%2Fapi%2Fconnector%2Flogin%2Fcallback%3FconnectorId%3Dgitlab%26type%3DSTORAGE&response_type=code&state=6z1oajr7s9q75vl47i5065&scope=api&code_challenge=APGn3qQ0O5zDzkLelHIMtjKMo2WmFJj4XxFqAd3bQJ4&code_challenge_method=S256","color":"#2B1B63","background":"rgba(252, 109, 38, 0.2)"},{"connectorId":"gitlab2","type":"STORAGE","displayName":"Framagit","icon":"/assets/gitlab.png","disableLogout":false,"isLoggedIn":false,"oauthUrl":"https://framagit.org/oauth/authorize?client_id=13484ab1c802362f0292cbf637fd348a3bca46dfb2c2466a361ab89a799a8925&redirect_uri=https%3A%2F%2Fv3.silex.me%2Fapi%2Fconnector%2Flogin%2Fcallback%3FconnectorId%3Dgitlab2%26type%3DSTORAGE&response_type=code&state=1mzpmxpuymoy2ss07wv01f&scope=api&code_challenge=dkwe8iS7dOH8Cmm5YVIv39huEkLCJ1xx276h1jok7oQ&code_challenge_method=S256","color":"#2B1B63","background":"rgba(252, 109, 38, 0.2)"},{"connectorId":"ftp","type":"STORAGE","displayName":"Ftp","icon":"/assets/ftp.png","disableLogout":false,"isLoggedIn":false,"oauthUrl":null,"color":"#ffffff","background":"#0066CC"}]
|
|
238
|
+
// this.connectors = [{"connectorId":"gitlab","type":"STORAGE","displayName":"GitLab.com","icon":"/assets/gitlab.png","disableLogout":false,"isLoggedIn":true,"oauthUrl":"https://gitlab.com/oauth/authorize?client_id=55cb55ab5fd12ab93883378513212d0c85833ef1f4084375f973618e938af107&redirect_uri=https%3A%2F%2Fv3.silex.me%2Fapi%2Fconnector%2Flogin%2Fcallback%3FconnectorId%3Dgitlab%26type%3DSTORAGE&response_type=code&state=6z1oajr7s9q75vl47i5065&scope=api&code_challenge=APGn3qQ0O5zDzkLelHIMtjKMo2WmFJj4XxFqAd3bQJ4&code_challenge_method=S256","color":"#2B1B63","background":"rgba(252, 109, 38, 0.2)"},{"connectorId":"gitlab2","type":"STORAGE","displayName":"Framagit","icon":"/assets/gitlab.png","disableLogout":false,"isLoggedIn":false,"oauthUrl":"https://framagit.org/oauth/authorize?client_id=13484ab1c802362f0292cbf637fd348a3bca46dfb2c2466a361ab89a799a8925&redirect_uri=https%3A%2F%2Fv3.silex.me%2Fapi%2Fconnector%2Flogin%2Fcallback%3FconnectorId%3Dgitlab2%26type%3DSTORAGE&response_type=code&state=1mzpmxpuymoy2ss07wv01f&scope=api&code_challenge=dkwe8iS7dOH8Cmm5YVIv39huEkLCJ1xx276h1jok7oQ&code_challenge_method=S256","color":"#2B1B63","background":"rgba(252, 109, 38, 0.2)"},{"connectorId":"ftp","type":"STORAGE","displayName":"Ftp","icon":"/assets/ftp.png","disableLogout":false,"isLoggedIn":false,"oauthUrl":null,"color":"#ffffff","background":"#0066CC"}]
|
|
240
239
|
this.loading = false
|
|
241
240
|
} catch (error) {
|
|
242
241
|
this.loading = false
|
|
@@ -277,7 +276,7 @@ setTimeout(() => {
|
|
|
277
276
|
<link rel="icon" href="/assets/favicon-32x32.png" />
|
|
278
277
|
<meta name="og:title" property="og:title" content="Silex Dashboard"/>
|
|
279
278
|
<link href="https://fonts.googleapis.com" rel="preconnect" ><link href="https://fonts.gstatic.com" rel="preconnect" crossorigin ><link href="https://fonts.googleapis.com/css?family=Ubuntu&display=swap" rel="stylesheet" ></head>
|
|
280
|
-
<body id="i2hcfw" class="body app before-js"><A id="ixzhcr" href="/" class="button button-bar__item--secondary">< Retour</A><div id="imawg3" class="bg-silex-purpel"><div id="imgx81" style="min-height:100vh;display:flex;justify-content:center;align-items:center;flex-direction:column;" class=""><div id="iikf0s" class="box box_login"><div id="ie0dxn" class="text-centered"><img id="ior0hl" src="/assets/logo-silex.svg"/><p id="it2175" style="margin:15px 0px 0px 0px;font-size:1rem;" class="subtitle-16">Connectez-vous pour continuer</p></div><h3 id="iqc1xf" style="display:none;" class="margin-top">Recommandé et gratuit</h3><div id="in62y2"><div id="isqe61"
|
|
279
|
+
<body id="i2hcfw" class="body app before-js"><A id="ixzhcr" href="/" class="button button-bar__item--secondary">< Retour</A><div id="imawg3" class="bg-silex-purpel"><div id="imgx81" style="min-height:100vh;display:flex;justify-content:center;align-items:center;flex-direction:column;" class=""><div id="iikf0s" class="box box_login"><div id="ie0dxn" class="text-centered"><img id="ior0hl" src="/assets/logo-silex.svg"/><p id="it2175" style="margin:15px 0px 0px 0px;font-size:1rem;" class="subtitle-16">Connectez-vous pour continuer</p></div><h3 id="iqc1xf" style="display:none;" class="margin-top">Recommandé et gratuit</h3><div id="in62y2"><div id="isqe61" class="full-width margin-30" v-for="(connector, index) in connectors.slice(0, 1)"><a id="i44y9w" href="https://" class="connector__card" :href="getHref(connector)" data-remove-href="true"><div id="io3lid" class="button-bar__item__icon" :style="getConnectorStyle(connector)"></div><div id="i87asw" class="connector__description" v-text="connector.displayName">Login with <span href="" id="i0tt68">Name</span><br/></div></a></div></div><DETAILS id="ihn6fj"><summary id="i8w75b" class="margin-30">Utilisateurs avancés</summary><div id="ibi9qh" class="full-width" v-for="(connector, index) in connectors.slice(1)"><a href="https://" class="connector__card" :href="getHref(connector)" data-remove-href="true"><div class="button-bar__item__icon" :style="getConnectorStyle(connector)"></div><div class="connector__description" v-text="connector.displayName">Login with <span href="">Name</span><br/></div></a></div></DETAILS><div id="i3cney" class="button-bar"><a id="iacshy" class="button big-button connector__card" v-if="!loading" :key="index" :style="{ backgroundColor: connector.background, color: connector.color }" v-for="(connector, index) in connectors" v-on-click="openLogin(connector)"><div id="iiwn36"><div class="button-bar__item__icon" :style="`background: url('${connector.icon}'); background-repeat: no-repeat; background-size: contain;`"></div><div id="if4gvb" class="" v-text="connector.displayName">Name<br/></div></div><div id="isndui">This connector is about blablabla<br/></div></a></div><div id="ijflxq" style="font-size:0.85rem;text-align:left;margin:30px 0px 0px 0px;" class="text-centered">Avez-vous besoin d'aide ? Consultez <a href="https://docs.silex.me/fr/user/login" target="_blank">la documentation</a>. <br><br> En vous connectant, vous acceptez les <a href="https://docs.silex.me/fr/terms" target="_blank">conditions d'utilisation</a> et la <a href="https://docs.silex.me/fr/security" target="_blank">politique de confidentialité</a>.</div></div><div id="i9msnk" style="padding:10px;display:inline;" class="text-white top-space-20" v-if="error" v-text="message" :test="message">Insert your text here</div><div id="i6akll" style="padding:10px;display:inline;" class="button button--tertiary text-centered" v-if="error" v-on:click="logout()">Déconnexion</div></div></div><FOOTER class="footer">
|
|
281
280
|
|
|
282
281
|
<div id="iprzeh" style="min-height:100px;" class="footer__column"><h3 href="" class="footer__item">Social & communauté</h3>
|
|
283
282
|
|
package/_site/fr/index.html
CHANGED
|
@@ -553,6 +553,39 @@ window.addEventListener('load', function() {
|
|
|
553
553
|
<a href="https://short.silex.me/contribute" class="footer__item" target="_blank">Contribuer</a></div>
|
|
554
554
|
<div id="ilgsqu-2-2-2-2" class="footer__column"><h3 href="" class="footer__item">Articles et revues</h3>
|
|
555
555
|
|
|
556
|
+
<a href="https://short.silex.me/alternatives_fr" class="footer__item" target="_blank">Alternatives à Silex</a>
|
|
557
|
+
<a href="https://short.silex.me/reviews_fr" class="footer__item" target="_blank">Revues de Silex</a>
|
|
558
|
+
<a href="https://short.silex.me/press_fr" class="footer__item" target="_blank">Silex dans la presse</a></div></FOOTER><HEADER class="menu-bar"><A href="/"><img src="/assets/favicon-32x32.png" id="iel80b-2" class="nav__logo"/></A><NAV id="in0357-2-2-2-2-2-2-2" class="nav">
|
|
559
|
+
|
|
560
|
+
<a href="/" class="nav__item uppercase fx-flash nav_item--active" target="">Sites</a>
|
|
561
|
+
<a href="http://docs.silex.me/" class="nav__item uppercase fx-flash nav_item--active" target="_blank">Docs</a>
|
|
562
|
+
<a href="https://www.silex.me/" class="nav__item uppercase fx-flash nav_item--active" target="_blank">A propos</a>
|
|
563
|
+
<a href="https://community.silex.me/" class="nav__item uppercase fx-flash nav_item--active" target="_blank">Communauté</a>
|
|
564
|
+
<a href="https://mail-list.silexlabs.org/subscription/cemnfkaVrK?locale=fr-FR&source=silex-dashboard" class="nav__item uppercase fx-flash nav_item--active" target="_blank">News</a></NAV>
|
|
565
|
+
|
|
566
|
+
<div class="lang"><a href="/en" class="lang__item nav__item uppercase">EN</a></div>
|
|
567
|
+
<div class="lang"><a href="/fr" class="lang__item nav__item uppercase">FR</a></div><div class="user__wrapper pointer"><div class="user-icon__wrapper"><div class="user-icon__image"></div></div><div><div id="ir10ge-2-2-2-2-2-2-2" class="button button--tertiary text-centered">Logout</div></div></div></HEADER><FOOTER class="footer">
|
|
568
|
+
|
|
569
|
+
<div id="ilgsqu-2-2-2-2-2" class="footer__column"><h3 href="" class="footer__item">Social & communauté</h3>
|
|
570
|
+
|
|
571
|
+
<a href="https://www.silex.me/" class="footer__item" target="_blank">A propos de Silex, site officiel</a>
|
|
572
|
+
<a href="mailto:contact+silex-dashboard-footer@silex.me" class="footer__item" target="_blank">Email l'équipe</a>
|
|
573
|
+
<a href="https://short.silex.me/sponsors" class="footer__item" target="_blank">Sponsors</a>
|
|
574
|
+
<a href="https://short.silex.me/donate" class="footer__item" target="_blank">Faire un don</a>
|
|
575
|
+
<a href="https://short.silex.me/community" class="footer__item" target="_blank">Forum de la communauté</a>
|
|
576
|
+
<a href="https://news.silex.me/forms/nfrm_weLJnLY5" class="footer__item" target="_blank">Newsletter</a>
|
|
577
|
+
<a href="https://events.silex.me/" class="footer__item" target="_blank">Meetups/ Evénements</a>
|
|
578
|
+
<a href="https://short.silex.me/mastodon" class="footer__item" target="_blank">Mastodon</a>
|
|
579
|
+
<a href="https://short.silex.me/chat" class="footer__item" target="_blank">Chat</a></div>
|
|
580
|
+
<div id="ilgsqu-2-2-2-2-2" class="footer__column"><h3 href="" class="footer__item">Ressources</h3>
|
|
581
|
+
|
|
582
|
+
<a href="https://short.silex.me/code" class="footer__item" target="_blank">Code source</a>
|
|
583
|
+
<a href="http://docs.silex.me/" class="footer__item" target="_blank">Documentation</a>
|
|
584
|
+
<a href="https://video.silex.me/my-library/video-playlists" class="footer__item" target="_blank">Vidéos</a>
|
|
585
|
+
<a href="https://short.silex.me/roadmap" class="footer__item" target="_blank">Feuille de route</a>
|
|
586
|
+
<a href="https://short.silex.me/contribute" class="footer__item" target="_blank">Contribuer</a></div>
|
|
587
|
+
<div id="ilgsqu-2-2-2-2-2" class="footer__column"><h3 href="" class="footer__item">Articles et revues</h3>
|
|
588
|
+
|
|
556
589
|
<a href="https://short.silex.me/alternatives_fr" class="footer__item" target="_blank">Alternatives à Silex</a>
|
|
557
590
|
<a href="https://short.silex.me/reviews_fr" class="footer__item" target="_blank">Revues de Silex</a>
|
|
558
591
|
<a href="https://short.silex.me/press_fr" class="footer__item" target="_blank">Silex dans la presse</a></div></FOOTER></body>
|
package/_site/js/vue.cjs.js
CHANGED
package/_site/js/vue.cjs.prod.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* vue v3.4.
|
|
2
|
+
* vue v3.4.37
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -817,7 +817,7 @@ class BaseReactiveHandler {
|
|
|
817
817
|
return isShallow2;
|
|
818
818
|
} else if (key === "__v_raw") {
|
|
819
819
|
if (receiver === (isReadonly2 ? isShallow2 ? shallowReadonlyMap : readonlyMap : isShallow2 ? shallowReactiveMap : reactiveMap).get(target) || // receiver is not the reactive proxy, but has the same prototype
|
|
820
|
-
// this means the
|
|
820
|
+
// this means the receiver is a user proxy of the reactive proxy
|
|
821
821
|
Object.getPrototypeOf(target) === Object.getPrototypeOf(receiver)) {
|
|
822
822
|
return target;
|
|
823
823
|
}
|
|
@@ -2936,7 +2936,7 @@ const KeepAliveImpl = {
|
|
|
2936
2936
|
}
|
|
2937
2937
|
function pruneCacheEntry(key) {
|
|
2938
2938
|
const cached = cache.get(key);
|
|
2939
|
-
if (!current || !isSameVNodeType(cached, current)) {
|
|
2939
|
+
if (cached && (!current || !isSameVNodeType(cached, current))) {
|
|
2940
2940
|
unmount(cached);
|
|
2941
2941
|
} else if (current) {
|
|
2942
2942
|
resetShapeFlag(current);
|
|
@@ -2998,6 +2998,10 @@ const KeepAliveImpl = {
|
|
|
2998
2998
|
return rawVNode;
|
|
2999
2999
|
}
|
|
3000
3000
|
let vnode = getInnerChild(rawVNode);
|
|
3001
|
+
if (vnode.type === Comment) {
|
|
3002
|
+
current = null;
|
|
3003
|
+
return vnode;
|
|
3004
|
+
}
|
|
3001
3005
|
const comp = vnode.type;
|
|
3002
3006
|
const name = getComponentName(
|
|
3003
3007
|
isAsyncWrapper(vnode) ? vnode.type.__asyncResolved || {} : comp
|
|
@@ -4290,7 +4294,7 @@ function provide(key, value) {
|
|
|
4290
4294
|
function inject(key, defaultValue, treatDefaultAsFactory = false) {
|
|
4291
4295
|
const instance = currentInstance || currentRenderingInstance;
|
|
4292
4296
|
if (instance || currentApp) {
|
|
4293
|
-
const provides = instance ? instance.parent == null ? instance.vnode.appContext && instance.vnode.appContext.provides : instance.parent.provides :
|
|
4297
|
+
const provides = currentApp ? currentApp._context.provides : instance ? instance.parent == null ? instance.vnode.appContext && instance.vnode.appContext.provides : instance.parent.provides : void 0;
|
|
4294
4298
|
if (provides && key in provides) {
|
|
4295
4299
|
return provides[key];
|
|
4296
4300
|
} else if (arguments.length > 1) {
|
|
@@ -5484,6 +5488,7 @@ Server rendered element contains more child nodes than client vdom.`
|
|
|
5484
5488
|
}
|
|
5485
5489
|
if (props) {
|
|
5486
5490
|
{
|
|
5491
|
+
const isCustomElement = el.tagName.includes("-");
|
|
5487
5492
|
for (const key in props) {
|
|
5488
5493
|
if (// #11189 skip if this node has directives that have created hooks
|
|
5489
5494
|
// as it could have mutated the DOM in any possible way
|
|
@@ -5491,7 +5496,7 @@ Server rendered element contains more child nodes than client vdom.`
|
|
|
5491
5496
|
logMismatchError();
|
|
5492
5497
|
}
|
|
5493
5498
|
if (forcePatch && (key.endsWith("value") || key === "indeterminate") || isOn(key) && !isReservedProp(key) || // force hydrate v-bind with .prop modifiers
|
|
5494
|
-
key[0] === ".") {
|
|
5499
|
+
key[0] === "." || isCustomElement) {
|
|
5495
5500
|
patchProp(el, key, null, props[key], void 0, parentComponent);
|
|
5496
5501
|
}
|
|
5497
5502
|
}
|
|
@@ -7189,13 +7194,13 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
7189
7194
|
namespace
|
|
7190
7195
|
);
|
|
7191
7196
|
}
|
|
7197
|
+
container._vnode = vnode;
|
|
7192
7198
|
if (!isFlushing) {
|
|
7193
7199
|
isFlushing = true;
|
|
7194
7200
|
flushPreFlushCbs();
|
|
7195
7201
|
flushPostFlushCbs();
|
|
7196
7202
|
isFlushing = false;
|
|
7197
7203
|
}
|
|
7198
|
-
container._vnode = vnode;
|
|
7199
7204
|
};
|
|
7200
7205
|
const internals = {
|
|
7201
7206
|
p: patch,
|
|
@@ -7603,7 +7608,8 @@ function useModel(props, name, options = EMPTY_OBJ) {
|
|
|
7603
7608
|
return options.get ? options.get(localValue) : localValue;
|
|
7604
7609
|
},
|
|
7605
7610
|
set(value) {
|
|
7606
|
-
|
|
7611
|
+
const emittedValue = options.set ? options.set(value) : value;
|
|
7612
|
+
if (!hasChanged(emittedValue, localValue) && !(prevSetValue !== EMPTY_OBJ && hasChanged(value, prevSetValue))) {
|
|
7607
7613
|
return;
|
|
7608
7614
|
}
|
|
7609
7615
|
const rawProps = i.vnode.props;
|
|
@@ -7612,7 +7618,6 @@ function useModel(props, name, options = EMPTY_OBJ) {
|
|
|
7612
7618
|
localValue = value;
|
|
7613
7619
|
trigger();
|
|
7614
7620
|
}
|
|
7615
|
-
const emittedValue = options.set ? options.set(value) : value;
|
|
7616
7621
|
i.emit(`update:${name}`, emittedValue);
|
|
7617
7622
|
if (hasChanged(value, emittedValue) && hasChanged(value, prevSetValue) && !hasChanged(emittedValue, prevEmittedValue)) {
|
|
7618
7623
|
trigger();
|
|
@@ -7650,9 +7655,9 @@ function emit(instance, event, ...rawArgs) {
|
|
|
7650
7655
|
} = instance;
|
|
7651
7656
|
if (emitsOptions) {
|
|
7652
7657
|
if (!(event in emitsOptions) && true) {
|
|
7653
|
-
if (!propsOptions || !(toHandlerKey(event) in propsOptions)) {
|
|
7658
|
+
if (!propsOptions || !(toHandlerKey(camelize(event)) in propsOptions)) {
|
|
7654
7659
|
warn$1(
|
|
7655
|
-
`Component emitted event "${event}" but it is neither declared in the emits option nor as an "${toHandlerKey(event)}" prop.`
|
|
7660
|
+
`Component emitted event "${event}" but it is neither declared in the emits option nor as an "${toHandlerKey(camelize(event))}" prop.`
|
|
7656
7661
|
);
|
|
7657
7662
|
}
|
|
7658
7663
|
} else {
|
|
@@ -9678,7 +9683,7 @@ function isMemoSame(cached, memo) {
|
|
|
9678
9683
|
return true;
|
|
9679
9684
|
}
|
|
9680
9685
|
|
|
9681
|
-
const version = "3.4.
|
|
9686
|
+
const version = "3.4.37";
|
|
9682
9687
|
const warn = warn$1 ;
|
|
9683
9688
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
9684
9689
|
const devtools = devtools$1 ;
|
|
@@ -10101,8 +10106,10 @@ function useCssVars(getter) {
|
|
|
10101
10106
|
setVarsOnVNode(instance.subTree, vars);
|
|
10102
10107
|
updateTeleports(vars);
|
|
10103
10108
|
};
|
|
10104
|
-
|
|
10109
|
+
onBeforeMount(() => {
|
|
10105
10110
|
watchPostEffect(setVars);
|
|
10111
|
+
});
|
|
10112
|
+
onMounted(() => {
|
|
10106
10113
|
const ob = new MutationObserver(setVars);
|
|
10107
10114
|
ob.observe(instance.subTree.el.parentNode, { childList: true });
|
|
10108
10115
|
onUnmounted(() => ob.disconnect());
|
|
@@ -15445,7 +15452,7 @@ function resolveComponentType(node, context, ssr = false) {
|
|
|
15445
15452
|
} else {
|
|
15446
15453
|
exp = isProp.exp;
|
|
15447
15454
|
if (!exp) {
|
|
15448
|
-
exp = createSimpleExpression(`is`, false, isProp.loc);
|
|
15455
|
+
exp = createSimpleExpression(`is`, false, isProp.arg.loc);
|
|
15449
15456
|
}
|
|
15450
15457
|
}
|
|
15451
15458
|
if (exp) {
|