UNPKG

@gamesberry/karmyc-core

Version:

A flexible and powerful layout management system for React applications

20 lines (19 loc) 1.05 kB
export { KarmycCoreProvider } from './KarmycCoreProvider'; export { useKarmycStore, initializeMainStore } from './store'; export type { RootStateType } from './store'; export { useSpaceStore } from './spaceStore'; export type { SpaceStateType, Space, SpaceState, SpaceActions } from './spaceStore'; export * from './types/karmyc'; export * from './types/actions'; export * from './types/areas-type'; export * from './types/context-menu-types'; export { actionRegistry } from './registries/actionRegistry'; export { keyboardShortcutRegistry } from './registries/keyboardShortcutRegistry'; export { areaRegistry } from './registries/areaRegistry'; export { historyPlugin } from './plugins/historyPlugins'; export type { CoreSlice } from './slices/core-slice'; export type { ContextMenuSlice } from './slices/context-menu-slice'; export type { ScreensSlice } from './slices/screens-slice'; export type { AreasSlice } from './slices/areas-slice'; export type { ActionRegistry } from './registries/actionRegistry'; export { t } from './utils/translation';