@tapni/auth 0.0.25 → 0.0.27
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/dist/TapniAuth.es.js +322 -318
- package/dist/TapniAuth.umd.js +2 -2
- package/package.json +2 -2
- package/src/install.js +1 -1
- package/src/views/Login.vue +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tapni/auth",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.27",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/TapniAuth.umd.js",
|
|
6
6
|
"module": "./dist/TapniAuth.es.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@capacitor/preferences": "^5.0.6",
|
|
35
35
|
"@codetrix-studio/capacitor-google-auth": "^3.3.6",
|
|
36
36
|
"@recognizebv/capacitor-plugin-msauth": "^3.5.1",
|
|
37
|
-
"@tapni/capacitor-reactive-localstorage-vue3": "^0.0.
|
|
37
|
+
"@tapni/capacitor-reactive-localstorage-vue3": "^0.0.14",
|
|
38
38
|
"await-to-js": "^3.0.0",
|
|
39
39
|
"axios": "^1.6.5",
|
|
40
40
|
"jwt-decode": "^4.0.0",
|
package/src/install.js
CHANGED
package/src/views/Login.vue
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
/>
|
|
25
25
|
</i>
|
|
26
26
|
</a>
|
|
27
|
-
<h1 class="bold no-bottom center-text" style="margin-top: 63px;">
|
|
27
|
+
<h1 class="bold no-bottom center-text" style="margin-top: 63px;" @click="bum">
|
|
28
28
|
{{ this.ssoLang[this.appLang].login }}
|
|
29
29
|
</h1>
|
|
30
30
|
<p class="half-bottom small-top center-text color-black"></p>
|
|
@@ -329,6 +329,9 @@ export default {
|
|
|
329
329
|
}
|
|
330
330
|
},
|
|
331
331
|
methods: {
|
|
332
|
+
bum () {
|
|
333
|
+
console.log('lo', this.$storage);
|
|
334
|
+
},
|
|
332
335
|
async submit() {
|
|
333
336
|
// if (this.captcha === '') return this._vm.errorHandler({ message: 'Please select recaptcha' });
|
|
334
337
|
if (this.submitted) return;
|