@xy-planning-network/trees 0.11.1-dev → 0.11.1-dev-2

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": "@xy-planning-network/trees",
3
- "version": "0.11.1-dev",
3
+ "version": "0.11.1-dev-2",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "repository": "github:xy-planning-network/trees",
@@ -1,6 +1,8 @@
1
1
  <script setup lang="ts">
2
2
  import { UserMenuItem } from "@/composables/nav"
3
- import { AppIcon } from "@/lib-components"
3
+ import AppIcon from "@/lib-components/indicators/AppIcon.vue"
4
+ import Popover from "@/lib-components/overlays/Popover/Popover.vue"
5
+ import PopoverContent from "@/lib-components/overlays/Popover/PopoverContent.vue"
4
6
  import TooltipWrapper from "@/lib-components/overlays/TooltipWrapper.vue"
5
7
  import { computed } from "vue"
6
8
 
@@ -19,7 +19,6 @@ export interface UserMenuItemFlyout<T extends Component> extends UserMenuItemBas
19
19
  }
20
20
  export type UserMenuItem = UserMenuItemUrl | UserMenuItemNav | UserMenuItemFlyout<Component>;
21
21
  export interface NavItem {
22
- badge?: boolean | string | number;
23
22
  icon?: Component | RenderFunction;
24
23
  name: string;
25
24
  description?: string;