comand-component-library 4.2.22 → 4.2.23
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/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "comand-component-library",
|
3
|
-
"version": "4.2.
|
3
|
+
"version": "4.2.23",
|
4
4
|
"license": "GPL-3.0-only",
|
5
5
|
"author": "CoManD-UI",
|
6
6
|
"private": false,
|
@@ -29,7 +29,7 @@
|
|
29
29
|
},
|
30
30
|
"dependencies": {
|
31
31
|
"clickout-event": "^1.1.2",
|
32
|
-
"comand-frontend-framework": "^4.2.
|
32
|
+
"comand-frontend-framework": "^4.2.50",
|
33
33
|
"comand-ui-iconfonts": "^1.0.19",
|
34
34
|
"core-js": "^3.20.1",
|
35
35
|
"prismjs": "^1.27.0",
|
@@ -13,7 +13,7 @@
|
|
13
13
|
<!-- end CmdHeadline -->
|
14
14
|
|
15
15
|
<!-- begin Google-Login-Button -->
|
16
|
-
<button v-if="enableLoginWithGoogle" class="gsi-material-button stretch-on-small-devices">
|
16
|
+
<button v-if="enableLoginWithGoogle" class="gsi-material-button stretch-on-small-devices" @click="loginWithGoogle">
|
17
17
|
<div class="gsi-material-button-state"></div>
|
18
18
|
<div class="gsi-material-button-content-wrapper">
|
19
19
|
<div class="gsi-material-button-icon">
|
@@ -540,6 +540,9 @@ export default {
|
|
540
540
|
}
|
541
541
|
},
|
542
542
|
methods: {
|
543
|
+
loginWithGoogle() {
|
544
|
+
this.$emit("login-with-google")
|
545
|
+
},
|
543
546
|
toggleSendLoginView() {
|
544
547
|
this.sendLogin = !this.sendLogin
|
545
548
|
|