mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-04-03 16:15:36 +00:00
24 lines
547 B
TypeScript
24 lines
547 B
TypeScript
/**
|
|
* @ocelot-social/ui
|
|
*
|
|
* Vue component library for ocelot.social
|
|
* Works with Vue 2.7+ and Vue 3
|
|
*
|
|
* Note: CSS is built separately - import '@ocelot-social/ui/style.css' in your app
|
|
*/
|
|
|
|
// Re-export all components
|
|
export * from './components'
|
|
|
|
// Re-export Ocelot composite components
|
|
export * from './ocelot'
|
|
|
|
// Export Vue plugin for global registration
|
|
export { default as OcelotUI } from './plugin'
|
|
|
|
// Export utilities
|
|
export { cn } from './utils'
|
|
|
|
// Export prop types
|
|
export type { Size, Rounded, Shadow, Variant } from './types'
|