@apptegy/nuxt-navigation 0.1.48-alpha.0 → 0.1.49

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/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@apptegy/nuxt-navigation",
3
3
  "configKey": "@apptegy/nuxt-navigation",
4
- "version": "0.1.48-alpha.0",
4
+ "version": "0.1.49",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "0.8.4",
7
7
  "unbuild": "unknown"
@@ -74,11 +74,11 @@ function expandDropdown() {
74
74
  };
75
75
 
76
76
  async function goToSettings() {
77
- await navigateTo(`${props.settingsRoute}`); // if internal routes
77
+ await navigateTo(`${props.settingsRoute}`, {external: true});
78
78
  };
79
79
 
80
80
  async function goToWebsite() {
81
- await navigateTo(`${props.schoolWebsite}`, {external: true}); // if external routes
81
+ await navigateTo(`${props.schoolWebsite}`, {external: true});
82
82
  };
83
83
 
84
84
  </script>
@@ -189,6 +189,7 @@ function onHoverLeave() {
189
189
  display: grid;
190
190
  grid-template-rows: 0fr auto 0fr;
191
191
  background-color: var(--nav-background-color, #FFF);
192
+ border-right: 1px solid #DFDFDF;
192
193
  height: 100%;
193
194
  overflow-y: auto;
194
195
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apptegy/nuxt-navigation",
3
- "version": "0.1.48-alpha.0",
3
+ "version": "0.1.49",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {