/** * Pure / runtime-agnostic surface for `propeller-v2-vue-ui`. * * Everything exported here is plain TS — no Vue, no browser API. Safe to * import from a Nuxt server context, a build script, or a test without * pulling in the Vue component tree. The main `.` entry pulls in the * components and their Vue dependency; this `/shared` entry stays free of it. * * Re-exports the pure surface from `propeller-v2-core-ui` so existing * downstream import paths (`propeller-v2-vue-ui/shared`) keep working. * New code may import from `propeller-v2-core-ui` directly. */ export * from '@propeller-commerce/propeller-v2-core-ui'; export type { MenuCategory } from './composables/vue/useMenu';