UNPKG

@mozaic-ds/vue

Version:

Mozaic-Vue is the Vue.js implementation of ADEO Design system

9 lines (7 loc) 463 B
import type { InjectionKey, Ref } from 'vue'; export const EXPANDED_SIDEBAR_KEY = Symbol() as InjectionKey<Ref<boolean>>; export const TOGGLE_SIDEBAR_KEY = Symbol() as InjectionKey<() => void>; export const SUB_ITEM_KEY = Symbol() as InjectionKey<boolean>; export const STACKED_SHORTCUTS_KEY = Symbol() as InjectionKey<boolean>; export const FOOTER_ITEM_KEY = Symbol() as InjectionKey<boolean>; export const HIDE_MENU_KEY = Symbol() as InjectionKey<() => void>;