@novely/core 0.43.0 → 0.44.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/index.d.ts CHANGED
@@ -602,6 +602,10 @@ type CustomHandlerFunctionParameters<L extends string, S extends State> = {
602
602
  * Renderer Context
603
603
  */
604
604
  rendererContext: Context;
605
+ /**
606
+ * Context key in which action is running
607
+ */
608
+ contextKey: string;
605
609
  /**
606
610
  * Function to work with custom action's state
607
611
  */
@@ -1080,7 +1080,8 @@ var Novely = (() => {
1080
1080
  remove,
1081
1081
  rendererContext: ctx,
1082
1082
  getDomNodes,
1083
- getPath
1083
+ getPath,
1084
+ contextKey: ctx.id
1084
1085
  });
1085
1086
  };
1086
1087