dce-reactkit 3.6.22 → 3.6.23

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.
@@ -20,6 +20,7 @@ declare enum LogAction {
20
20
  Peek = "Peek",
21
21
  Halt = "Halt",
22
22
  Resume = "Resume",
23
+ Jump = "Jump",
23
24
  Unknown = "Unknown"
24
25
  }
25
26
  export default LogAction;
package/dist/index.d.ts CHANGED
@@ -933,6 +933,7 @@ declare enum LogAction {
933
933
  Peek = "Peek",
934
934
  Halt = "Halt",
935
935
  Resume = "Resume",
936
+ Jump = "Jump",
936
937
  Unknown = "Unknown"
937
938
  }
938
939
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dce-reactkit",
3
- "version": "3.6.22",
3
+ "version": "3.6.23",
4
4
  "description": "Shared components for Harvard DCE apps",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -37,6 +37,8 @@ enum LogAction {
37
37
  Halt = 'Halt',
38
38
  // Resume a process (resume a halted process)
39
39
  Resume = 'Resume',
40
+ // Jump to/seek to/reveal/go to/navigate to a target
41
+ Jump = 'Jump',
40
42
  // Unknown action
41
43
  Unknown = 'Unknown',
42
44
  }