comand-component-library 4.2.21 → 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.21",
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.42",
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",
@@ -24,7 +24,7 @@ export { default as inputGroupRadiobuttons } from "./input-group-radiobuttons.js
24
24
  export { default as inputGroupReplacedRadiobuttons } from "./input-group-replaced-radiobuttons.json"
25
25
  export { default as inputGroupToggleSwitchRadiobuttons } from "./input-group-toggle-switch-radiobuttons.json"
26
26
  export { default as listOfLinksSectionAnchors } from "./list-of-links-section-anchors.json"
27
- export { default as listOfTagsSectionAnchors } from "./list-of-tags-.json"
27
+ export { default as listOfTags } from "./list-of-tags.json"
28
28
  export { default as list } from "./list.json"
29
29
  export { default as listOfComponents } from "./listOfComponents.json"
30
30
  export { default as mainNavigation } from "./main-navigation.json"
@@ -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