@constela/core 0.12.2 → 0.12.3

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -420,7 +420,7 @@ interface EventHandlerOptions {
420
420
  interface EventHandler {
421
421
  event: string;
422
422
  action: string;
423
- payload?: Expression;
423
+ payload?: Expression | Record<string, Expression>;
424
424
  debounce?: number;
425
425
  throttle?: number;
426
426
  options?: EventHandlerOptions;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@constela/core",
3
- "version": "0.12.2",
3
+ "version": "0.12.3",
4
4
  "description": "Core types, schema, and validator for Constela UI framework",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",