comand-component-library 4.1.25 → 4.1.26

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "comand-component-library",
3
- "version": "4.1.25",
3
+ "version": "4.1.26",
4
4
  "license": "GPL-3.0-only",
5
5
  "author": "CoManD-UI",
6
6
  "private": false,
@@ -299,6 +299,7 @@ export default {
299
299
  },
300
300
  closeOffcanvasNavigation() {
301
301
  this.showOffcanvas = false
302
+ console.log("close")
302
303
  document.getElementById("toggle-offcanvas").focus()
303
304
  },
304
305
  toggleOffcanvasNavigation() {
@@ -308,6 +309,7 @@ export default {
308
309
  } else {
309
310
  // open offcanvas
310
311
  this.showOffcanvas = true
312
+ console.log("open")
311
313
  this.$nextTick(() => document.getElementById("close-offcanvas").focus())
312
314
  }
313
315
  }