@apptegy/nuxt-navigation 0.1.2 → 0.1.3

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.2",
4
+ "version": "0.1.3",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "0.8.1",
7
7
  "unbuild": "unknown"
@@ -87,15 +87,13 @@ interface IOrgSelectProps {
87
87
  selectedOrg: {};
88
88
  };
89
89
 
90
- withDefaults(defineProps<IOrgSelectProps>(), {
90
+ const props = withDefaults(defineProps<IOrgSelectProps>(), {
91
91
  selectedOrg: {
92
92
  name: '',
93
93
  intranet: false
94
94
  }
95
95
  });
96
96
 
97
- const props = defineProps<IOrgSelectProps>();
98
-
99
97
  const dropdownTriggerRef = ref();
100
98
  const optionRef = ref();
101
99
 
@@ -36,7 +36,7 @@
36
36
  </div>
37
37
  <div class="navbar--footer">
38
38
  <NavImpersonateInfoPanel
39
- v-if="true"
39
+ v-if="impersonatedUser.show"
40
40
  :impersonated-user="impersonatedUser"
41
41
  :navbar-expanded="expanded"
42
42
  />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apptegy/nuxt-navigation",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {