feat(Boxer): implement Boxer component with autocomplete and server-side support

This commit is contained in:
2026-01-17 18:26:20 +02:00
parent 31f2a0428f
commit a8e9c50290
9 changed files with 963 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
export { Boxer, default } from './Boxer';
export { BoxerProvider, useBoxerStore } from './Boxer.store';
export type {
BoxerDataSource,
BoxerItem,
BoxerProps,
BoxerRef,
BoxerState,
BoxerStoreState,
} from './Boxer.types';