@almadar/ui 2.28.1 → 2.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/avl/index.cjs +412 -0
- package/dist/avl/index.d.cts +89 -1
- package/dist/avl/index.d.ts +3 -0
- package/dist/avl/index.js +410 -2
- package/dist/providers/EntityStoreProvider.d.ts +47 -0
- package/dist/providers/index.cjs +221 -141
- package/dist/providers/index.d.ts +2 -0
- package/dist/providers/index.js +115 -40
- package/dist/runtime/OrbPreview.d.ts +2 -2
- package/dist/runtime/index.cjs +968 -938
- package/dist/runtime/index.js +190 -160
- package/dist/runtime/useTraitStateMachine.d.ts +1 -1
- package/package.json +1 -1
|
@@ -32,7 +32,7 @@ export interface TraitStateMachineResult {
|
|
|
32
32
|
}
|
|
33
33
|
export interface UseTraitStateMachineOptions {
|
|
34
34
|
/** Callback invoked after each event is processed (for server forwarding) */
|
|
35
|
-
onEventProcessed?: (eventKey: string, payload?: Record<string, unknown>) => void
|
|
35
|
+
onEventProcessed?: (eventKey: string, payload?: Record<string, unknown>) => void | Promise<void>;
|
|
36
36
|
/** Router navigate function for navigate effects */
|
|
37
37
|
navigate?: (path: string, params?: Record<string, unknown>) => void;
|
|
38
38
|
/** Notification function for notify effects */
|