comand-component-library 4.1.25 → 4.1.26
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/comand-component-library.js +15240 -12072
- package/package.json +1 -1
- package/src/components/CmdMainNavigation.vue +2 -0
package/package.json
CHANGED
@@ -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
|
}
|